DBF.SkipRaw Method | |
Position the cursor regardless of scope and filter conditions.
Namespace:
XSharp.RDD
Assembly:
XSharp.Rdd (in XSharp.Rdd.dll) Version: 2.19
Syntax VIRTUAL METHOD SkipRaw(
nToSkip AS LONG
) AS LOGIC
public override bool SkipRaw(
int nToSkip
)
Request Example
View SourceParameters
- nToSkip
- Type: Long
The number of rows to skip. If this argument is positive, the cursor moves forward (toward the end-of-file). If it is negative, the cursor moves backward (toward the beginning-of-file).
Return Value
Type:
Logic
TRUE when the operation succeeded or FALSE when the operation failed.
Some RDD operations do not really return FALSE but throw an exception to indicate failure.
These exceptions are caught in the higher level code and registered in
the LastRddError property in the runtime state..
Implements
SkipRaw(Long)See Also