ASPxClientRichEdit.commands Property
Provides access to the RichEdit’s client-side commands.
#Declaration
commands: RichEditCommands
#Property Value
Type | Description |
---|---|
Rich |
A Rich |
#Remarks
The commands property provides access to client commands allowing you to programmatically accomplish different tasks within a document (such as inserting characters, paragraphs, tables and pictures, changing element formatting, creating numbered lists, etc).
richEdit.commands.changeFontFormatting.execute({bold: true, size: 25, foreColor: "#789"});
richEdit.commands.copy.execute();
Refer to the following section for more information: Client Commands.