This property refers to the image handle of the image loaded into the Thumbnail Control
[C++Builder] thumbcontrolname->ImageHandle
[ = unsigned ]
[Delphi] thumbcontrolname.ImageHandle
[ = THandle ]
Property Value
The image handle of a raster or vector image
Explanation
This property refers to the image handle of the image loaded into the Thumbnail Control. It is useful to display, as thumbnails, the results when scanning continuously with an ADF or other means.
In Delphi:
procedure TForm1.VImageKit1AfterScan(Sender: TObject; DibHandle,
OrgHandle: Cardinal; ImageCount: Integer; BitOrder: Smallint);
begin
VIkThumb1.ImageHandle :=
VImageKit1.CopyImage(DibHandle);
end;
Setting this value
This value can be set at run-time.
Retrieving this value
This value cannot be retrieved.