Class ChartBaseList.ChartBaseEnumerator
Internal enumerator for ChartBaseList class.
Inheritance
System.Object
ChartBaseList.ChartBaseEnumerator
Implements
System.Collections.IEnumerator
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Chart
Assembly: Syncfusion.Chart.Base.dll
Syntax
public class ChartBaseEnumerator : IEnumerator
Constructors
ChartBaseEnumerator(ChartBaseList)
Initializes a new instance of the ChartBaseEnumerator class.
Declaration
public ChartBaseEnumerator(ChartBaseList list)
Parameters
Type | Name | Description |
---|---|---|
ChartBaseList | list | Instance of ChartBaseList class. |
Properties
Current
Gets the current element in the collection.
Declaration
public object Current { get; }
Property Value
Type |
---|
System.Object |
Methods
MoveNext()
Advances the enumerator to the next element of the collection.
Declaration
public bool MoveNext()
Returns
Type | Description |
---|---|
System.Boolean | true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. |
Reset()
Sets the enumerator to its initial position, which is before the first element in the collection.
Declaration
public void Reset()
Implements
System.Collections.IEnumerator