캐럿이 위치한 문단에 있는 글머리 번호의 시작번호를 설정합니다Set starting value of the numbered list to which the paragraph in which the caret is positioned belongs.
Parameters:
| Name | Type | Description |
|---|---|---|
| actionName | String액션 이름 | 'setListStartValue' starting value setting API |
| value | Number | 글머리 번호가 시작할 번호1, 2, 3, 4, 5 ... |
Example:
| Code Block | ||||
|---|---|---|---|---|
| ||||
editor.execCommand('setListStartValue', 10);
editor.execCommand('setListStartValue', 999); |
...