GetFormat
Get the data format of the matrix
int GetFormat( )
The integer code representing the format
EX1
// Matrix must exist in project void MatrixObject_GetFormat_Ex1() { MatrixObject moMy(Project.MatrixPages(0).GetName(), 0); if (moMy.SetFormat(OKCOLTYPE_NUMERIC)) out_str("Format setting successfully!"); else out_str("Format setting error!"); printf("the data format in the matrix is %d", moMy.GetFormat()); }
Get the data format of the matrix. Currently, only numeric is supported .
MatrixObject::SetFormat
origin.h