셀렉션된 텍스트에 첨자(위첨자, 아래첨자)를 설정합니다.
캐럿 상태인 경우 입력될 텍스트의 첨자를 설정합니다Make the selected text superscript or subscript.
In caret status, the text to be entered becomes superscript or subscript.
Parameters:
Name | Type | Description |
---|---|---|
actionName | String액션 이름 | 'setTextVertAlign' superscript and subscript API |
value | String | 위첨자Superscript and subscript properties: 'superscript'아래첨자: , 'subscript' |
Example:
Code Block | ||||
---|---|---|---|---|
| ||||
editor.execCommand('setTextVertAlign', 'superscript'); // 위첨자 editor.execCommand('setTextVertAlign', 'subscript'); // 아래첨자 |