InsertTableCommand.execute(columnCount, rowCount) Method
Executes the InsertTableCommand command with the specified parameters.
Declaration
execute(
columnCount: number,
rowCount: number
): boolean
Parameters
| Name | Type | Description |
|---|---|---|
| columnCount | number | The number of columns in a generated table. |
| rowCount | number | The number of rows in a generated table. |
Returns
| Type | Description |
|---|---|
| boolean |
|
Remarks
richEdit.commands.insertTable.execute(3, 5);
See Also