Page tree

Versions Compared

Key

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

선택된 표의 index 번째 위치에 열을 삽입합니다Insert column to the table in which the caret or selection is positioned at the index position received as a parameter.


Parameters:

NameTypeDescription
actionNameString액션 이름'insertCol' column inserting API
indexNumber삽입할 위치Inserting position


Example:

Code Block
languagejs
themeEmacs
editor.execCommand('insertCol', 1);
editor.execCommand('insertCol', 5);

...