캐럿이 위치한 문단에 글머리 기호, 글머리 번호를 토글합니다.
문단을 셀렉션한 경우 셀렉션한 모든 문단에 글머리 기호, 글머리 번호를 토글합니다Toggle bulleted or numbered list setting in the paragraph in which the caret is positioned.
When there is a selection, bulleted or numbered list setting in the selected paragraphs is toggled.
Parameters:
Name | Type | Description |
---|---|---|
actionName | String액션 이름 | 'toggleList' list toggling API |
type | String |
|
Example:
Code Block | ||||
---|---|---|---|---|
| ||||
editor.execCommand('toggleList', 'bullet'); editor.execCommand('toggleList', 'number'); |
...