Show / Hide Table of Contents

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 Source

Current

Gets the current element being enumerated. The behavior of IEnumerable<T>.Current is undefined before the first call to MoveNext and after walking off the end of the list. However, the IEnumerable.Current contract requires an exception to be thrown.

Declaration
public readonly TreeListViewColumnDescription Current { get; }
Property Value
Type Description
TreeListViewColumnDescription

Methods

View Source

MoveNext()

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.

View Source

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 Source

IEnumerator.Current

Gets the current element being enumerated.

Declaration
readonly object IEnumerator.Current { get; }
Returns
Type Description
System.Object
View Source

IDisposable.Dispose()

Disposes the enumerator.

Declaration
void IDisposable.Dispose()

Implements

System.Collections.Generic.IEnumerator<T>
System.Collections.IEnumerator
System.IDisposable
  • View Source
In This Article
Back to top Generated by DocFX