TImageEnMIO.OnAfterAcquireBitmap
Declaration
property OnAfterAcquireBitmap: TIEAfterAcquireBitmapEvent;
Description
Occurs after an image is acquired from a scanner and added to the image list.
// Add a description to all scanned images
ImageEnMView.MIO.OnAfterAcquireBitmap := AfterAcquireBitmap;
procedure TForm1.AfterAcquireBitmap(Sender: TObject; index: Integer);
begin
ImageEnMView1.ImageTopText[ index ] := 'Image scanned on ' + DateTimeToStr( now );
end;