RichEditSelection.goToPreviousPage Method
Moves the cursor to the previous page and allows you to extend the selection.
Declaration
goToPreviousPage(
extendSelection?: boolean
): void
Parameters
Name | Type | Description |
---|---|---|
extendSelection | boolean |
|
Remarks
Moves the cursor one page up. If the current page is the first one, moves the cursor to the start of the current page.
richEdit.selection.goToPreviousPage(true);
Refer to the following section for more information: Client Selection.
See Also