GetName
Get the name of an internal Origin Matrix.
string GetName( )
Returns the name of an internal Origin Matrix.
EX1
// Get the name of Origin C Matrix void Matrix_GetName_ex1() { MatrixPage MatPg1; MatPg1.Create("Origin"); MatrixLayer MatLy1 = MatPg1.Layers(0); Matrix Mat1(MatLy1); printf(" Matrix %s is created. The size is %dx%d.\n", Mat1.GetName(), Mat1.GetNumRows(), Mat1.GetNumCols()); }
Get the name of the internal Origin matrix attached to this Origin C Matrix object.
origin.h