캐럿이 위치한 셀을 인자로 받은 row , col 만큼 나눕니다Divide the cell in which the caret is positioned according to the number of rows and columns received as a parameter.
Parameters:
| Name | Type | Description |
|---|---|---|
| actionName | String액션 이름 | 'splitCell' cell spliting API |
| row | Number나눌 행 개수 | Number of rows |
| col | Number나눌 열 개수 | Number of columns |
Example:
| Code Block | ||||
|---|---|---|---|---|
| ||||
editor.execCommand('splitCell', 2, 2); |
...