Variables
Const DecreaseLabelVisibilityLevel
DecreaseLabelVisibilityLevel: object = makeAction("Decrease label visibility level", "Decrease label visibility",makeHTML("arrow-down"), false,(editor) => {editor.decreaseLabelVisiblityLevel();})
Type declaration
-
constructor: function
- new __type(editor: EditorAPI): Action<__type>
-
Parameters
Returns Action<__type>
Const IncreaseLabelVisibilityLevel
IncreaseLabelVisibilityLevel: object = makeAction("Increase label visibility level", "Increase label visibility",makeHTML("arrow-up"), false,(editor) => {editor.increaseLabelVisibilityLevel();})
Type declaration
-
constructor: function
- new __type(editor: EditorAPI): Action<__type>
-
Parameters
Returns Action<__type>
Const Redo
Redo: object = makeAction("Redo", makeHTML("redo"), false,(editor) => {editor.redo();})
Type declaration
-
constructor: function
- new __type(editor: EditorAPI): Action<__type>
-
Parameters
Returns Action<__type>
Const Save
Save: object = makeAction("Save", makeHTML("upload"), false,(editor) => {// tslint:disable-next-line:no-floating-promiseseditor.save();})
Type declaration
-
constructor: function
- new __type(editor: EditorAPI): Action<__type>
-
Parameters
Returns Action<__type>
Const Undo
Undo: object = makeAction("Undo", makeHTML("undo"), false,(editor) => {editor.undo();})
Type declaration
-
constructor: function
- new __type(editor: EditorAPI): Action<__type>
-
Parameters
Returns Action<__type>