Page tree

Versions Compared

Key

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

...

'editor.document.size' 값은 별도로 설정하지 않으면 아래와 같은 기본값을 가지게 됩니다. 기본 설정값은 MS-Word의 A4 크기와 유사합니다.

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

...

자주 사용하는 도형을 툴바에 배치할 수 있는 추가되었습니다.
config파일의 toolbar 부분에 아래와 같이 "shapeEditor_도형이름" 형식으로 필요한 도형을 추가 할 수 있습니다.

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

...