...
Name | Value | Description | |
---|---|---|---|
QueryEditor | 1 | QueryEditor 기능 Disable | |
StyleModule | 2 | iMTX_CSS.xlam 모듈 로딩 Disable | |
StyleCopy | 4 | iMTX_CSS.xlam 모듈 로딩이 되어있을때 pivot, list 공통 style 복사기능 Disable | |
QueryEditor
StyleModule
StyleCopy
코드 블럭 | ||||
---|---|---|---|---|
| ||||
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
}catch(e){
console.log("i-MATRIX6 ViewerEX event[SetiMATRIXPropertyEx] js err::" + e.message);
}
} |