Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
themeEmacs
'editor.mode.iframe': {
    'enable': true,
    'style.urls': ['../dist/iframeMode/contentsEditStyle.css', ... ],
    'script.urls': ['../dist/iframeMode/SEPolyfill.js']
}

주의) Document mode 사용시 에디터가 완전히 초기화된 후 에디터 API를 사용하셔야 합니다.

Code Block
languagejs
themeEmacs
titleopenHTML() 사용예


3. Document mode 지원

config 파일에 아래와 같은 설정을 추가하면 document mode를 사용 할 수 있습니다.

...

Code Block
languagejs
themeEmacs
'editor.type': 'document',
'editor.document.size': {
    'width': 793,
    'height': 1122,
    'padding': { 'top': 96, 'right': 96, 'bottom': 96, 'left': 96 }
},


주의) Document mode 사용시 에디터가 완전히 초기화된 후 에디터 API를 사용하셔야 합니다.

...

4. 표 절대좌표 지원

표 속성에 "글자처럼 취급" 기능이 추가되었습니다.

...

Code Block
languagejs
themeEmacs
 'editor.toolbar': [
    'shapeEditor', 'shapeEditor_textBox','shapeEditor_rectangle','shapeEditor_roundedRectangle','shapeEditor_oval'
],

[적용결과 ]

추가가능한 도형의 종류와 이름

...

추가 가능한 도형의 종류

추가 가능한 도형의 종류와 도형이름은 플러그인 > 도형편집기에서 확인 할 수 있습니다.

6. 도형에 텍스트 정렬기능 추가

도형 내부의 텍스트를 정렬 할 수 있는 기능이 추가되었습니다.

...