...
| Name | Type | Description |
|---|---|---|
| actionName | String | 액션 이름 |
| rowcol | Object | { row: {Number} col: {Number} } 테이블의 행/열 |
Example:
| Code Block | ||||
|---|---|---|---|---|
| ||||
editor.execCommand('insertTable', { row: 2, col: 2 }); // 2x2 테이블 삽입 |
...
...
| Name | Type | Description |
|---|---|---|
| actionName | String | 액션 이름 |
| rowcol | Object | { row: {Number} col: {Number} } 테이블의 행/열 |
Example:
| Code Block | ||||
|---|---|---|---|---|
| ||||
editor.execCommand('insertTable', { row: 2, col: 2 }); // 2x2 테이블 삽입 |
...