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

[C++Builder]    imagekitcontrolname.get_Layer[Index].Picture[= TPicture* ]
[Delphi]    imagekitcontrolname.get_Layer[Index].Picture[= TPicture ]

Reference

TPicture
For more information about TPicture, please refer to Delphi or C++Builder help documentation.

Explanation

It's possible to pass either a raster image or a vector image from the ImageKit to TPicture.

In C++Builder:

(1) To pass an image from a TImage to the TVImageKit:

     VImageKit1->Layer[0]->Picture = Image1->Picture;

(2) To pass an image from the TVImageKit to a TImage

     Image1->Picture = VimageKit1->Layer[0]->Picture;

 

In Delphi:

(1) To pass an image from a TImage to the TVImageKit:

VImageKit1.Layer[0].Picture := Image1.Picture;

 

(2) To pass an image from the TVImageKit to a TImage

Image1.Picture := VImageKit1.Layer[0].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