DeleteBookmarkCommand.execute(name) Method
In This Article
Executes the DeleteBookmarkCommand command with the specified parameter.
#Declaration
TypeScript
execute(
name: string
): boolean
#Parameters
Name | Type | Description |
---|---|---|
name | string | A string value specifying a name of the deleted bookmark. |
#Returns
Type | Description |
---|---|
boolean |
|
#Remarks
Usage example:
richEdit.commands.deleteBookmark.execute("firstBookmark");
See Also