GetParameter
Get one parameter label from the matrix object.
BOOL GetParameter(string &str, int index = 0)
Return TRUE if successful, else FALSE.
EX1
//Get parameter label from the matrix object. void MatrixObject_GetParameter_ex1() { MatrixLayer ml = Project.ActiveLayer(); if ( ml ) { MatrixObject mo = ml.MatrixObjects(0); string strParam; int index = 0; mo.GetParameter(strParam, index); printf("The %dth parameter label is %s\n", index+1, strParam); } }
MatrixObject::SetParameter, MatrixObject::GetName, MatrixObject::GetLongName, MatrixObject::GetUnits, MatrixObject::GetLabel, MatrixObject::GetExtendedLabel, MatrixObject::GetParameters
origin.h