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