maximize() Since: 1.4.1
Gets if the editor is maximised or not
Syntax
var isMaximised = instance.maximize();
Return
Type: boolean
Gets if the editor is maximised or not
var isMaximised = instance.maximize();
Type: boolean
Sets if the editor is maximised or not
instance.maximize(maximize);
maximize
Type boolean
If to maximize the editor or not
Type: sceditor
Maximise the editor:
var textarea = ...;
sceditor.instance(textarea).maximize(true);
Set the editor back to normal:
var textarea = ...;
sceditor.instance(textarea).maximize(false);