控件界面上所有元素都可以控制显示或隐藏,下面逐一介绍,控件界面上的元素位置如下图:

CAD界面如何隐藏显示(网页版)_控件

控件界面工具栏的显示或隐藏,js代码实现如下:

//隐藏/显示工具栏



mxOcx.ShowToolBar("常用工具",isShow);

mxOcx.ShowToolBar("绘图工具",isShow);

mxOcx.ShowToolBar("编辑工具",isShow);

mxOcx.ShowToolBar("特性",isShow);

mxOcx.ShowToolBar("ET工具",isShow);



isShow = !isShow;

控件界面菜单栏的显示或隐藏,js代码实现如下:

//隐藏/显示菜单栏





mxOcx.ShowMenuBar(isShow);

isShow = !isShow;

控件界面标尺栏的显示或隐藏,js代码实现如下:

//隐藏/显示标尺栏





mxOcx.ShowRulerWindow(isShow);

isShow = !isShow;

控件界面属性栏的显示或隐藏,js代码实现如下:

//隐藏/显示属性栏





mxOcx.ShowPropertyWindow(isShow);

isShow = !isShow;

控件界面命令栏的显示或隐藏,js代码实现如下:

//隐藏/显示命令栏





mxOcx.ShowCommandWindow(isShow);

isShow = !isShow;

控件界面模型栏的显示或隐藏,js代码实现如下:

//隐藏/显示模型栏





mxOcx.ShowModelBar(isShow);

isShow = !isShow;

控件界面状态栏的显示或隐藏,js代码实现如下:

//隐藏/显示状态栏





mxOcx.ShowStatusBar(isShow);

isShow = !isShow;

控件界面浏览模式切换,js代码实现如下:

//模式切换

var isBrowner = false;



isBrowner = !isBrowner;

mxOcx.BrowseMode = isBrowner;

mxOcx.ShowMenuBar = !isBrowner;

mxOcx.ShowPropertyWindow = !isBrowner;