ChangeTableStyleCommand.execute(style) Method
Executes the ChangeTableStyleCommand command with the specified parameter.
Declaration
execute(
style: string | TableStyle
): boolean
Parameters
Name | Type | Description |
---|---|---|
style | string | TableStyle | A TableStyle object specifying the style applying to the table. |
Returns
Type | Description |
---|---|
boolean |
|
Remarks
Usage example:
richEdit.commands.changeTableStyle.execute(richEdit.document.tableStylesInfo[1]);
Table style settings are available via the RichEditDocument.tableStylesInfo property.
See Also