> 확인방법
Sub propertyTest() Set mxmodule = Application.COMAddIns.Item("iMATRIX6.ExcelModule").Object Debug.Print mxmodule.property.usercode Debug.Print mxmodule.property.GetVariablesXML End Sub
> 설정방법
대상파일 : 서버/extention/imatrix6/viewerex.jsp
설정위치 : SetiMATRIXPropertyEx 함수내에 다음 코드 적용 => obj.AddGlobalParamsEx("변수명", "변수값");
var SetiMATRIXPropertyEx = function(obj) { try { //====================================================== // 공통 설정 //====================================================== //obj.Property.EnableFeature &= ~8192; //html5 dialog 버전 지원 obj.Property.EnableFeature |= 64; //조건 컨트롤 사용 obj.Property.EnableFeature |= 262144; //실행계획 //... //(생략) //... obj.AddGlobalParamsEx("VS_USERCODE", SESSION_USER_CODE); }catch(e){ console.log("i-MATRIX6 ViewerEX event[SetiMATRIXPropertyEx] js err::" + e.message); } }