RichEditCommands.insertBookmark Property
Gets a command to insert a new bookmark that references the current selection.
Declaration
get insertBookmark(): InsertBookmarkCommand
Property Value
Type | Description |
---|---|
InsertBookmarkCommand | An object that provides methods that execute the command and check its state. |
Remarks
Call the execute(name, start, length) method to invoke the command. The method checks the command state (obtained via the getState method) to determine whether the action can be performed.
richEdit.commands.insertBookmark.execute("firstBookmark", 10, 2);
Refer to the following section for more information: Client Commands.
See Also