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