This property allows a raster image or a vector image to be passed between the ImageKit and TPicture.

[C++Builder]   imagekitcontrolname->Picture[= TPicture* ]
[Delphi]   imagekitcontrolname.Picture[= TPicture ]

Reference

This value refers to TPicture.
For details about TPicture, please refer to Delphi and C++Builder help documentation.

Explanation

It's possible to pass either a raster image or a vector image from the ImageKit to TPicture. The following code shows how to pass a raster image.

In C++Builder:

(1) From TImage to the TVImageKit:

     VImageKit1->Picture = Image1->Picture;

(2) From the TVImageKit to TImage

     Image1.Picture = VImageKit1->Picture;

 

In Delphi:

(1) From TImage to the TVImageKit:

     VImageKit1.Picture := Image1.Picture

(2) From TVImageKit to a TImage

     Image1.Picture := VImageKit1.Picture

Setting this value

This value can be set at design-time and run-time.

Retrieving this value

This value can be retrieved at run-time.

 

The ImageKit10 VCL is a product created by Newtone Corporation