Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

6. UI 설정

6.1 버튼 크기 설정

릴리즈 2.3.0 이상

'editor.ui.button.size'  설정으로 버튼의 크기를 조절할 수 있습니다. (기본값 = 35, 최소값 = 22, 단위 px)

synapeditor.config.js
{
	'editor.ui.button.size': 35
}
설정하지 않았을 때 (기본)

"editor.ui.button.size": 28

"editor.ui.button.size": 40

6.2 높이 조절

'editor.resizable' 설정으로 에디터의 높이 조절가능 여부를 설정합니다.  (기본값 = false)

synapeditor.config.js
{
	'editor.resizable': false
}
editor.resizable : trueeditor.resizable : false (기본)

6.3 가로 스크롤

'editor.horizontalScroll' 설정을 true로 설정하면 에디터에서 가로스크롤을 사용합니다. (기본값 = true)

synapeditor.config.js
{
	'editor.horizontalScroll': true
}
editor.horizontalScroll : true (기본)editor.horizontalScroll : false

6.4 레이어 가이드

'editor.guide.div' 설정을 true로 설정하면 에디터에서 레이어 가이드를 표시합니다. (기본값 = false)

synapeditor.config.js
{
	'editor.guide.div': false
}


6.5 툴바영역 고정

'editor.mode.sticky' 설정으로 에디터에서 헤더 영역을 외부 스크롤에 고정할지 여부를 설정합니다.  (기본값 = false)

synapeditor.config.js
{
	'editor.mode.sticky': false
}

6.6 표 핸들 사용

릴리즈 2.3.0 이상

'editor.table.handle' 설정으로 표 핸들을 사용할지 여부를 설정합니다. (기본값 = true)

false로 설정시 행, 열 선택 및 삽입 핸들이 사라지며, 풍선팝업에 행, 열 삽입버튼이 추가됩니다.

synapeditor.config.js
{
	'editor.table.handle': true,
}


editor.table.handle : true(기본)editor.table.handle : false


  • No labels