Page tree

Versions Compared

Key

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

...

You can add buttons to the toolbar area and menu area by using the plugin name 'shapeEditor'. Also,'selectionMode' can be added for multi-selection of shapes using a mouse.

Add to Toolbar

Code Block
languagejs
themeEmacs
title에디터 설정
//...
'editor.toolbar': [
	//...,
	'shapeEditor',
	//...
],
// ...

Appearance added to the toolbar

Image Added


Adding key shapes to the toolbar

Added the ability to place frequently used shapes on the toolbar. In the toolbar part of the config file, you can add necessary figures in the form of "shapeEditor_Figure Name" as shown below.

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