Struct TreeListViewColumnDescriptionCollection.Enumerator
Enumerates the items in the list.
Implements
System.Collections.Generic.IEnumerator<TreeListViewColumnDescription>
System.Collections.IEnumerator
System.IDisposable
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Phoenix.Controls
Assembly: Phoenix.Controls.TreeListView.dll
Syntax
public struct Enumerator : IEnumerator<TreeListViewColumnDescription>, IEnumerator, IDisposable
Properties
View SourceCurrent
Gets the current element being enumerated.
Declaration
public readonly TreeListViewColumnDescription Current { get; }
Property Value
Type | Description |
---|---|
TreeListViewColumnDescription |
Methods
View SourceMoveNext()
Advances the enumerator to the next element of the list.
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()
Explicit Interface Implementations
View SourceIEnumerator.Current
Gets the current element being enumerated.
Declaration
readonly object IEnumerator.Current { get; }
Returns
Type | Description |
---|---|
System.Object |
IDisposable.Dispose()
Disposes the enumerator.
Declaration
void IDisposable.Dispose()
Implements
System.Collections.Generic.IEnumerator<T>
System.Collections.IEnumerator
System.IDisposable