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

ASPxClientRichEdit.commands Property

Provides access to the RichEdit’s client-side commands.

Declaration

commands: RichEditCommands

Property Value

Type Description
RichEditCommands

A RichEditCommands object that lists the RichEdit’s client-side commands.

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.

See Also