DataServer.Skip Method | |
Move the record pointer forward or backward in this data server a specified number of records.
Namespace:
VO
Assembly:
VOSystemClasses (in VOSystemClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Skip(
nRelativePosition
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual Skip(
Usual nRelativePosition = default
)
Request Example
View SourceParameters
- nRelativePosition (Optional)
- Type: Usual
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:
Usual
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 |
---|
Not all data servers are capable of moving backward. |
See Also