Click or drag to resize

DataServer.Skip Method (Typed)

X#
Move the record pointer forward or backward in this data server a specified number of records.

Namespace:  XSharp.VO.SDK
Assembly:  XSharp.VOSystemClasses (in XSharp.VOSystemClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD Skip(
	 nRelativePosition AS LONG
) AS LOGIC
Request Example View Source

Parameters

nRelativePosition
Type: Long
The number of records to move, relative to the current record. A positive value means to move forward, and a negative value means to move backward. The default is +1.

Return Value

Type: Logic
TRUE if successful; otherwise, FALSE. Note that a FALSE value can also indicate that beginning- or end-of-file was encountered. Use the DataServer:Status property to determine the reason for a failure.
Remarks
When executed successfully, this method sends a NotifyRecordChange message to this data server's clients.
Tip Tip
Not all data servers are capable of moving backward.
See Also