Back to Devexpress

ASPxClientRichEdit.commands Property

aspnet-js-aspxclientrichedit-5983705b.md

latest1.2 KB
Original Source

ASPxClientRichEdit.commands Property

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

Declaration

ts
commands: RichEditCommands

Property Value

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

javascript
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

ASPxClientRichEdit Class

ASPxClientRichEdit Members