ChangeTableStyleCommand.execute(style) Method
In This Article
Executes the ChangeTableStyleCommand command with the specified parameter.
#Declaration
TypeScript
execute(
style: string | TableStyle
): boolean
#Parameters
Name | Type | Description |
---|---|---|
style | string | Table |
A 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