ZoneLeft Example for C++ 5.0 and later

void CSample_COMDlg::OnButton34()
{
   pRasterDoc->ZoneLeft = 100; 
   pRasterDoc->ZoneTop = 100; 
   pRasterDoc->ZoneWidth = 250; 
   pRasterDoc->ZoneHeight = 250; 

   int nRet = pRasterDoc->FindZones (0, FALSE); 
   if(nRet == 0) 
      AfxMessageBox(TEXT("The engine found all available zones in the specified page."));
}