Back to Devexpress

RichEditCommands.changeTableBordersAndShading Property

aspnet-js-richeditcommands-2846d02a.md

latest1.6 KB
Original Source

RichEditCommands.changeTableBordersAndShading Property

Gets a command to change the selected table’s borders and shading.

Declaration

ts
get changeTableBordersAndShading(): ChangeTableBordersAndShadingCommand

Property Value

TypeDescription
ChangeTableBordersAndShadingCommand

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

|

Remarks

Call the execute(settings, applyToWholeTable) 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 topBordersSettings = {color: "red", width: richEdit.unitConverter.pointsToTwips(0.25), style: ASPx.BorderLineStyle.Dashed};
richEdit.commands.changeTableBordersAndShading.execute({top: topBordersSettings, backgroundColor: "green"}, true)

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

See Also

RichEditCommands Class

RichEditCommands Members