Matrix 기능 삭제
Name | Value | Description | |
---|---|---|---|
QueryEditor | 1 | QueryEditor 기능 Disable | |
StyleModule | 2 | iMTX_CSS.xlam 모듈 로딩 Disable | |
StyleCopy | 4 | iMTX_CSS.xlam 모듈 로딩이 되어있을때 pivot, list 공통 style 복사기능 Disable | |
QueryEditorSchema | 64 | QueryHistory 기능 Disable |
QueryEditor
StyleModule
옵션적용전 | 적용후 |
---|---|
StyleCopy
옵션적용전 | 적용후 |
---|---|
QueryEditorSchema
옵션적용전 | 적용후 |
---|---|
예제
var SetiMATRIXPropertyEx = function(obj) { try { obj.Property.DisableFeature |= 1; //QueryEditor 기능 Disable obj.Property.DisableFeature |= 2; //iMTX_CSS.xlam 모듈 로딩 Disable obj.Property.DisableFeature |= 4; //pivot, list 공통 style 복사기능 Disable obj.Property.DisableFeature |= 64; //퀄리 에디터 schema 기능 Disable }catch(e){ console.log("i-MATRIX6 ViewerEX event[SetiMATRIXPropertyEx] js err::" + e.message); } }