에디터의 모든 기능을 사용할 수 없도록 막아주는 레이어를 숨깁니다.
관련 액션: command - Hides the dim layer that prevents all functions of the editor from being used.
Related action : showDimLayer
Parameters:
Name | Type | Description |
---|---|---|
actionName | String액션 이름 | 'hideDimLayer' dim layer hiding API |
[fullscreen] | Boolean전체화면을 덮는 레이어를 숨길지 여부 | Whether to hide the layer covering the entire screen |
Example:
Code Block | ||||
---|---|---|---|---|
| ||||
editor.execCommand('hideDimLayer'); // 에디터만 가리는 레이어 숨기기 Hides the dim layer that only hide the editor area editor.execCommand('hideDimLayer', true); // 화면 전체를 가리는 레이어 숨기기 Hides the dim layer that covers the entire screen |