GetParameters
Get all parameter labels from the matrix object.
BOOL GetParameters(vector<string> &vstr)
Return TRUE if successful, else FALSE.
EX1
//Output all parameter labels from the matrix object. void MatrixObject_GetParameters_ex1() { MatrixLayer ml = Project.ActiveLayer(); if ( ml ) { MatrixObject mo = ml.MatrixObjects(0); vector<string> vsParams; mo.GetParameters(vsParams); for(int ii=0; ii<vsParams.GetSize(); ii++) out_str(vsParams[ii]); } }
MatrixObject::SetParameters, MatrixObject::GetName, MatrixObject::GetLongName, MatrixObject::GetUnits, MatrixObject::GetLabel, MatrixObject::GetExtendedLabel, MatrixObject::GetParameter
origin.h