Class PivotGridGroupTraverser
Represents the group traverser.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.PivotGrid.dll
Syntax
public class PivotGridGroupTraverser : ITraverser<PivotGroupNode>, IEnumerator<PivotGroupNode>, IDisposable, IEnumerator, IEnumerable
Constructors
PivotGridGroupTraverser(PivotGroupNode)
Initializes a new instance of the PivotGridGroupTraverser class.
Declaration
public PivotGridGroupTraverser(PivotGroupNode root)
Parameters
PivotGroupNode
root
The root. |
Properties
Current
Gets the element in the collection at the current position of the enumerator.
Declaration
public PivotGroupNode Current { get; }
Property Value
PivotGroupNode
The element in the collection at the current position of the enumerator. |
Implements
Position
Gets or sets the position.
Declaration
public object Position { get; set; }
Property Value
System.Object
The position. |
Implements
Methods
Dispose()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Declaration
public void Dispose()
Implements
GetEnumerator()
Returns an enumerator that iterates through a collection.
Declaration
public IEnumerator GetEnumerator()
Returns
System.Collections.IEnumerator
An System.Collections.IEnumerator object that can be used to iterate through the collection. |
Implements
MoveNext()
Advances the enumerator to the next element of the collection.
Declaration
public bool MoveNext()
Returns
System.Boolean
true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. |
Implements
Exceptions
System.InvalidOperationException
The collection was modified after the enumerator was created. |
MovePrevious()
Moves to previous.
Declaration
public bool MovePrevious()
Returns
System.Boolean
|
Implements
MoveToEnd()
Moves to end.
Declaration
public bool MoveToEnd()
Returns
System.Boolean
|
Implements
OnItemsNavigating(PivotGroupNode)
Reset()
Sets the enumerator to its initial position, which is before the first element in the collection.
Declaration
public void Reset()
Implements
Exceptions
System.InvalidOperationException
The collection was modified after the enumerator was created. |
Events
ItemsNavigating
Explicit Interface Implementations
IEnumerator.Current
Declaration
object IEnumerator.Current { get; }
Returns
System.Object
|