OnZoomInDone example for C++ Builder
This example triggers the OnZoomInDone event and displays a message that the ZoomIn image has been captured.
void __fastcall TForm1::Lead1ZoomInDone(TObject *Sender, int x, int y)
{
char msg[256] ;
memset(&msg,0,sizeof(msg)) ;
sprintf(msg,"ZoomIn Captured: %d, %d",x,y);
ShowMessage(msg);
}