Back to Devexpress

RichEditCommands.changeTableFormatting Property

aspnet-js-richeditcommands-6753a920.md

latest1.6 KB
Original Source

RichEditCommands.changeTableFormatting Property

Gets a command to change the selected table’s formatting.

Declaration

ts
get changeTableFormatting(): ChangeTableFormattingCommand

Property Value

TypeDescription
ChangeTableFormattingCommand

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

|

Remarks

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

The command includes size parameters assigned in twips. Use the ASPxClientRichEdit.unitConverter to convert size measure units (inches, points, pixels, centimeters) to twips.

Usage example:

javascript
var tableSettings = {
    alignment: ASPx.TableRowAlignment.Right,
    indent: richEdit.unitConverter.pixelsToTwips(200),
    allowSpacingBetweenCells: true,
    spacingBetweenCells: richEdit.unitConverter.pixelsToTwips(3)
};
richEdit.commands.changeTableFormatting.execute(tableSettings);

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

See Also

RichEditCommands Class

RichEditCommands Members