This property sets the bitmap file used for the stamp in the image-editing toolbar

[C++Builder]   imagekitcontrolname->Edit->StampBmpFile [ = UnicodeString ]
[Delphi]   imagekitcontrolname.Edit.StampBmpFile [ = string ]

Property Value

The file name for the bitmap image that is used for the stamp.

Explanation

The StampBmpFile property sets the bitmap file used for the stamp in the image-editing toolbar.

Note: The transparent color must be set PRIOR to setting the StampBmpFile property.

Example: (Setting white as the transparent color)

In C++Builder:
     VImageKit1->Edit->StampTransBlue = 255;
     VImageKit1->Edit->StampTransGreen = 255;
     VImageKit1->Edit->StampTransRed = 255;
     VImageKit1->Edit->StampBmpFileName = "Stamp.bmp";

In Delphi:
     VImageKit1.Edit.StampTransBlue := 255;
     VImageKit1.Edit.StampTransGreen := 255;
     VImageKit1.Edit.StampTransRed := 255;
     VImageKit1.Edit.StampBmpFileName := 'Stamp.bmp';

Setting this value

This value can be set at run-time.

Retrieving this value

This value can be retrieved at run-time.

 

The ImageKit10 VCL is a product created by Newtone Corporation