ProcUnit::GetMeasureID
Gets measure ID
int GetMeasureID(
TCHAR *measureId
)
Parameters
*measureId
|
Pointer to the obtained measure ID storage area
|
Return Value
Returns 0 when the measure ID is successfully obtained.
Otherwise returns a non-zero value.
Description
Gets measure ID.
Example
int Sample::GetUnitData(ProcUnit *ptrProcUnit, int dataNo, ANYTYPE *data)
{
// gets measure ID
TCHAR measIDString[32] = {0};
ptrProcUnit->GetMeasureID(measIDString);
}