SetCellWidth
Set the matrix cell width
BOOL SetCellWidth( double nCellWidth )
TRUE for success; otherwise FALSE.
EX1
//Set the matrix cell width to 5. void MatrixLayer_SetCellWidth_Ex1() { MatrixPage mp = Project.MatrixPages(0); if(!mp) return; MatrixLayer ml(mp.GetName()); if( ml ) { if( ml.SetCellWidth(5) ) printf("The matrix cell width is %f\n", ml.GetCellWidth()); else printf("Fail to set matrix cell width!"); } }
MatrixLayer::GetCellWidth
origin.h