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