선택된 표의 index 번째 위치에 행을 삽입합니다Insert row to the table in which the caret or selection is positioned at the index position received as a parameter.
Parameters:
| Name | Type | Description |
|---|---|---|
| actionName | String액션 이름 | 'insertRow' row inserting API |
| index | Number삽입할 | 위치Inserting position |
Example:
| Code Block | ||||
|---|---|---|---|---|
| ||||
editor.execCommand('insertRow', 1);
editor.execCommand('insertRow', 5); |
...