Skip to main content

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

true to extend the selection; otherwise, false.

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