得到long类型的系统变量
[id(148), helpstring("method GetSysVarLong")] VARIANT_BOOL GetSysVarLong(BSTR pszVarName, LONG* pRet);
例如: JS
var pRet = mxOcx.Call("GetSysVar","ORTHOMODE"); if(pRet != null) { var iOrthoMode = pRet.AtLong(1); alert(iOrthoMode); }
_DMxDrawX 方法