MapperEditListMoveRelative Method (Int32, Boolean) |
Move to a record relative to the current record.
Note that this will throw an InvalidMapperMovement error if movement is negative and the mapper is not
BiDirectional.
Namespace:
NetQuarry.Data.WebMappers
Assembly:
EAP.WebMappers (in EAP.WebMappers.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public override bool MoveRelative(
int number,
bool page
)
Public Overrides Function MoveRelative (
number As Integer,
page As Boolean
) As Boolean
Parameters
- number
- Type: SystemInt32
The number of pages or records to move. A positive number moves forward, a negative number back. - page
- Type: SystemBoolean
Move by page count if true, else by record count.
Return Value
Type:
Booleantrue if the move was successful, otherwise false.
Implements
IMapperMoveRelative(Int32, Boolean)See Also