Page tree

Versions Compared

Key

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

선택된 셀들의 테두리 스타일을 설정합니다.


Parameters:

NameTypeDescription
actionNameString액션 이름
styleString

'none', 'solid', 'dotted', 'dashed', 'double'


Example:

Code Block
languagejs
themeEmacs
editor.execCommand('setBorderStyle', 'none'); // 테두리 없음
editor.execCommand('setBorderStyle', 'solid'); // 실선

...