SetDataDisplay
Sets the display format of the data in the matrix
BOOL SetDataDisplay( int nDisplay, uint numOfDigits, uint numOfDecimals )
TRUE for success; otherwise FALSE
EX1
//Sets the display format of the data in the matrix. void MatrixLayer_SetDataDisplay_Ex1() { MatrixLayer mm = Project.ActiveLayer(); if(!mm) return; int numOfDigits = 4; int numOfDecimals = 2; if( mm.SetDataDisplay(DD_SHOW, numOfDigits, numOfDecimals) ) printf("Success to set data display format! "); else printf("Fail tot set data display format!"); }
origin.h