CAD full-screen display controls

The main use of Function:


MxDrawXCustomFunction::Mx_FullScreen


Full-screen display controls, as detailed below:


parameter Explanation

int iFull = 2

0: incomplete screen 1: Full Screen, 2: automatic switch


js code to achieve the following:


1
2
3
var param = mxOcx.NewResbuf();
param.AddLong(1);
mxOcx.CallEx( "Mx_FullScreen" ,param);

Guess you like

Origin www.cnblogs.com/yzy0224/p/10979236.html