ProcUnit::MeasureDispG
Draws figures
int MeasureDispG(
int subNo,
ImageWindow *ptrImageWindow
)
Parameters
subNo
|
Displayed sub number
|
*ptrImageWindow
|
Pointer to the image display information
|
Return Value
Returns 0 when the measurement result display (graphic display) succeeded.
Otherwise returns a non-zero value.
Description
Performs the measurement result display (graphic display) of a processing item.
Example
int Sample::MeasureDispG(ProcUnit *ptrProcUnit, int subNo, ImageWindow *ptrImageWindow)
{
// Get the pointer to the inner processing unit
ProcUnit *ptrInnerUnit = ptrProcUnit->GetInnerUnit(0);
// Perform the measurement result display (graphic display) of an inner processing unit
ptrInnerUnit->MeasureDispG(subNo, *ptrImageWindow);
}