Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

캐럿이 위치한 셀을 인자로 받은 row , col 만큼 나눕니다Divide the cell in which the caret is positioned according to the number of rows and columns received as a parameter.


Parameters:

NameTypeDescription
actionNameString액션 이름'splitCell' cell spliting API
rowNumber나눌 행 개수Number of rows
colNumber나눌 열 개수Number of columns


Example:

Code Block
languagejs
themeEmacs
editor.execCommand('splitCell', 2, 2);

...