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

RichEditCommands.insertSymbol Property

Gets a command to insert characters into a document instead of a selected range.

Declaration

readonly insertSymbol: InsertSymbolCommand

Property Value

Type Description
InsertSymbolCommand

An object that provides methods that execute the command and check its state.

Remarks

Call the execute(symbol, fontName) method to invoke the command. The method checks the command state (obtained via the getState method) to determine whether the action can be performed.

You can get the full list of the supported fonts by calling the following command:

richEdit.commands.changeFontName.fontNames;

Usage example:

richEdit.commands.insertSymbol.execute("an example text", "Arial");
richEdit.commands.insertSymbol.execute("an example text", richEdit.commands.changeFontName[1]);

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

See Also