Page tree

Versions Compared

Key

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

...

도형 멀티셀렉션, Iframe mode, Document mode가 추가된 사이냅에디터 2.10.0 버전이 릴리즈 되었습니다.

자세한 사항은 아래 내용을 확인하세요그 외에도 표 절대좌표 지원, 도형 텍스트 정렬기능 등 많은 기능이 개선되었습니다.

주요 개선사항

Table of Contents
maxLevel2
exclude\d.\d.\d[(\d. )]*
stylenone


...

Notice

사이냅에디터 2.8.0 버전부터 에디터 스크립트 파일을 경량화하고자 임포트 기능과 도형 관련 기능을 외부 모듈로 분리하였습니다.

기존과 동일하게 임포트 기능과 도형 관련 기능을 사용하시려면 아래의 파일들을 추가로 include 하셔야 합니다.

문서 임포트 기능 사용 (SEDocModelParser)

xlsx, docx, hwp 등의 문서를 임포트 하는 기능을 사용하기 위해서는 에디터 패키지 externals 폴더 아래에 포함된 SEDocModelParser 모듈을 include  합니다.

Code Block
languagexml
themeEmacs
<script src="externals/SEDocModelParser/SEDocModelParser.min.js"></script>

도형 관련 기능 사용 (SEShapeManager)

도형이 포함된 문서를 임포트 하거나, shapeEditor 플러그인의 기능을 사용하기 위해서는 에디터 패키지 externals 폴더 아래에 포함된 SEShapeManager 모듈을 include 합니다.

...

Code Block
languagejs
'editor.toolbar': [
    ...,
    'selectionMode', 'shapeEditor'
    ...
],

 Image RemovedImage Added

2. Iframe mode 지원

...

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

...

Iframe mode 사용에 대한 자세한 사항은 [설치 및 설정 > 환경설정 > 기본 UI 설정 > Iframe mode]를 참고해주세요.

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 }
},

...

Image Added

Document mode 사용에 대한 자세한 사항은 [설치 및 설정 > 환경설정 > 기본 UI 설정 > Document mode]를 참고해주세요.

>> Document mode 사용해보기

4. 표 절대좌표 지원

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

...

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

[적용결과]

추가 가능한 도형의 종류

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

...

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

Image RemovedImage Added


Image RemovedImage Added

7. 특수기호에 "그리스어 및 콥트어" 추가

특수기호에 "그리스어 및 콥트어"가 추가되었습니다.

Image Modified

8. 복사/붙여넣기 개선

...