ZoomInDone example for C++ Builder

This example triggers the ZoomInDone event and displays a message that the ZoomIn image has been captured.

void __fastcall TForm1::LEADRasterView1ZoomInDone (TObject *Sender, long x,
      long y)
{
   ShowMessage ( "ZoomIn Captured: " + IntToStr ((int)x) + "," + IntToStr((int)y));
}