Returns the next day of the current month based on the delta value. If the day goes past the end of the month, then it will loop back to the start of the month.

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 DateTimeWrapper.
deltaIndex
Type: System..::..Int32
The number of days to advance through the sequence.

Return Value

The next DateTimeWrapper which is offset from the current DateTimeWrapper by the given number of days.

Implements

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

See Also