Returns the next data object in the sequence based on the given delta value.

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

Syntax

C#
Object GetNext(
	Object current,
	int deltaIndex
)
Visual Basic
Function GetNext ( _
	current As Object, _
	deltaIndex As Integer _
) As Object
Visual C++
Object^ GetNext(
	Object^ current, 
	int deltaIndex
)

Parameters

current
Type: System..::..Object
The current data object.
deltaIndex
Type: System..::..Int32
A delta value indicating how far to advance through the sequence.

Return Value

The next data object. This will be the current value offset by the delta value.

See Also