ImageEn, unit imageenio

TIEAfterAcquireBitmapEvent


Declaration

TIEAfterAcquireBitmapEvent = procedure(Sender: TObject; index: integer) of object;


Description

This event fired after an image has been acquired and added to the image list.
index specifies the index of the new image in the attached TImageEnMView.


Example

// 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;