ImageWindow::Fill
Fills the Image Display window with the specified color
int Fill(
COLORREF color
);
Parameters
Return Value
Returns 0 when the filling of the Image Display window succeeded.
Otherwise returns a non-zero value.
Description
Fills the Image Display window with the specified color.
Example
int Sample::MeasureDispG(ProcUnit *ptrProcUnit, int subNo, ImageWindow *ptrImageWindow)
{
// Fill the Image Display window with white
ptrImageWindow->Fill(RGB(255,255,255));
}