Interface ITraverser<T>
Represents traverser class that enumerates items.
Inherited Members
System.Collections.Generic.IEnumerator<T>.Current
System.IDisposable.Dispose()
System.Collections.IEnumerator.MoveNext()
System.Collections.IEnumerator.Reset()
System.Collections.IEnumerable.GetEnumerator()
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public interface ITraverser<T> : IEnumerator<T>, IDisposable, IEnumerator, IEnumerable
Type Parameters
T
|
Properties
Position
Gets or sets the position.
Declaration
object Position { get; set; }
Property Value
System.Object
The position. |
Methods
MovePrevious()
Moves the previous.
Declaration
bool MovePrevious()
Returns
System.Boolean
|
MoveToEnd()
Moves to end.
Declaration
bool MoveToEnd()
Returns
System.Boolean
|