Skip to main content
A newer version of this page is available. .

GoToBookmarkCommand.execute(name) Method

Executes the GoToBookmarkCommand command by applying the specified setting.

May result in taking no action if the command’s state does not allow command execution. Use the object’s getState method to check the command state.

Declaration

execute(
    name: string
): boolean

Parameters

Name Type Description
name string

A string value specifying the bookmark’s name

Returns

Type Description
boolean

A Boolean value identifying whether method execution was successful or failed.

Remarks

The execute method checks the command state (obtained using the getState method) before executing, and decides whether the action can be performed.

Usage example:


richEdit.commands.goToBookmark.execute('bookmark1');

Each sub-document stores information about bookmarks located within in the array that you can access via the SubDocument.bookmarksInfo property.

See Also