RichEditCommands.changeTableCellShading Property
In This Article
Gets a command to change cell shading in selected table cells.
#Declaration
TypeScript
get changeTableCellShading(): ChangeTableCellShadingCommand
#Property Value
Type | Description |
---|---|
Change |
An object that provides methods that execute the command and check its state. |
#Remarks
Call the execute(color) method to invoke the command. The method checks the command state (obtained via the getState method) to determine whether the action can be performed.
Usage examples:
richEdit.commands.changeTableCellShading.execute("gray");
richEdit.commands.changeTableCellShading.execute("#808080");
Refer to the following section for more information: Client Commands.
See Also