Class GridRowColEntryCollection.GridRowColEntryEnumerator
Implements a strongly typed enumerator for 'GridRowColEntryCollection'
Inheritance
System.Object
GridRowColEntryCollection.GridRowColEntryEnumerator
Implements
System.Collections.IEnumerator
Namespace: Syncfusion.Windows.Forms.Grid.Design
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public class GridRowColEntryEnumerator : Object, IEnumerator
Constructors
GridRowColEntryEnumerator(GridRowColEntryCollection)
Initializes an empty instances of GridRowColEntryCollection.GridRowColEntryEnumerator class.
Declaration
public GridRowColEntryEnumerator(GridRowColEntryCollection griMappings)
Parameters
| Type | Name | Description |
|---|---|---|
| GridRowColEntryCollection | griMappings | A collection of Row Col entries. |
Properties
Current
Gets the current element from the collection (strongly typed)
Declaration
public GridRowColEntry Current { get; }
Property Value
| Type |
|---|
| GridRowColEntry |
Methods
MoveNext()
Determines the enumerator moves to the next element of the collection
Declaration
public bool MoveNext()
Returns
| Type | Description |
|---|---|
| System.Boolean | True if next element exists; False otherwise. |
Reset()
Sets the enumerator to the first element in the collection
Declaration
public void Reset()
Implements
System.Collections.IEnumerator