programatically dock and undock the editor
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Is is possible to programatically dock and undock the editor?
I am using MATLAB 2016b.
0 Kommentare
Antworten (1)
Yair Altman
am 29 Sep. 2017
You can programmatically dock/undock editor files as follows:
com.mathworks.mde.desk.MLDesktop.getInstance.setClientDocked(fullfilename, true); % docked
com.mathworks.mde.desk.MLDesktop.getInstance.setClientDocked(fullfilename, false); % undocked
I am not familiar with a programmatic way to dock the entire editor window.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!