선택된 셀에 세로 정렬을 설정합니다.
Parameters:
| Name | Type | Description |
|---|---|---|
| actionName | String | 액션 이름 |
| value | String | 'top', 'middle', 'bottom' |
Example:
editor.execCommand('celVerticalAlign', 'top'); // 위쪽 정렬
editor.execCommand('celVerticalAlign', 'middle'); // 중간 정렬
editor.execCommand('celVerticalAlign', 'bottom'); // 아래쪽 정렬 |