Back to Devexpress

RichEditCommands.insertBookmark Property

aspnet-js-richeditcommands-157e97ec.md

latest1.1 KB
Original Source

RichEditCommands.insertBookmark Property

Gets a command to insert a new bookmark that references the current selection.

Declaration

ts
get insertBookmark(): InsertBookmarkCommand

Property Value

TypeDescription
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.

javascript
richEdit.commands.insertBookmark.execute("firstBookmark", 10, 2);

Refer to the following section for more information: Client Commands.

See Also

RichEditCommands Class

RichEditCommands Members