New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class PagedGroupedTraverser : IEnumerator

Inheritance: objectPagedGroupedTraverser

Implements: IEnumerator

Constructors

Initializes a new instance of the PagedGroupedTraverser class.

C#
public PagedGroupedTraverser(IList<Group<GridViewRowInfo>> groups)
Parameters:groupsIList<Group<GridViewRowInfo>>

The groups.

Properties

Gets the current element in the collection.

C#
public object Current { get; }
Property Value:

The current element in the collection.

Implements: IEnumerator.Current

Methods

Advances the enumerator to the next element of the collection.

C#
public bool MoveNext()
Returns:

bool

true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.

Exceptions:

InvalidOperationException

The collection was modified after the enumerator was created.

Implements: IEnumerator.MoveNext()

Sets the enumerator to its initial position, which is before the first element in the collection.

C#
public void Reset()
Exceptions:

InvalidOperationException

The collection was modified after the enumerator was created.

Implements: IEnumerator.Reset()