Returns the next object in the sequence based on the given delta index value. If an overflow occurs then the next item will loop around the sequence.

Namespace: Mindscape.PhoneElements
Assembly: Mindscape.PhoneElements (in Mindscape.PhoneElements.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public Object GetNext(
	Object current,
	int deltaIndex
)
Visual Basic
Public Function GetNext ( _
	current As Object, _
	deltaIndex As Integer _
) As Object
Visual C++
public:
virtual Object^ GetNext(
	Object^ current, 
	int deltaIndex
) sealed

Parameters

current
Type: System..::..Object
The current object.
deltaIndex
Type: System..::..Int32
The delta index to get the next object.

Return Value

The next object in the sequence based on the given delta index value.

Implements

IDataSource..::..GetNext(Object, Int32)

See Also