Class RecordTableEnumerator
Represents enumerator for SFTable
Inheritance
System.Object
    RecordTableEnumerator
  Implements
System.Collections.IDictionaryEnumerator
    System.Collections.IEnumerator
  Namespace: Syncfusion.XlsIO.Implementation.Collections
Assembly: Syncfusion.XlsIO.Portable.dll
Syntax
public class RecordTableEnumerator : Object, IDictionaryEnumerator, IEnumerator
  Constructors
RecordTableEnumerator(CellRecordCollection)
Initializes new instance of the enumerator.
Declaration
public RecordTableEnumerator(CellRecordCollection table)
  Parameters
| Type | Name | Description | 
|---|---|---|
| CellRecordCollection | table | Table to enumerate.  | 
      
Properties
Current
Gets the current element in the collection.
Declaration
public object Current { get; }
  Property Value
| Type | 
|---|
| System.Object | 
Entry
Gets both the key and the value of the current dictionary entry. Read-only.
Declaration
public DictionaryEntry Entry { get; }
  Property Value
| Type | 
|---|
| System.Collections.DictionaryEntry | 
Key
Gets the key of the current dictionary entry. Read-only.
Declaration
public object Key { get; }
  Property Value
| Type | 
|---|
| System.Object | 
Value
Gets the value of the current dictionary entry. Read-only.
Declaration
public object Value { get; }
  Property Value
| Type | 
|---|
| System.Object | 
Methods
MoveNext()
Advances the enumerator to the next element of the collection.
Declaration
public bool MoveNext()
  Returns
| Type | 
|---|
| System.Boolean | 
Reset()
Sets the enumerator to its initial position, which is before the first element in the collection.
Declaration
public void Reset()
  Implements
      System.Collections.IDictionaryEnumerator
  
  
      System.Collections.IEnumerator