This property refers to the image handle of the image set in the LayerNumber property. The index can range from 0 to 99.
[Visual Basic] Public Property Image As
Image
[C#] public Image Image {get; set;}
Property Value
Layer image object
Explanation
The Image property refers to the image handle of the image set in the LayerNumber property.
When the image set in the LayerNumber is loaded, the Image property value is set.
To disable the image referred to by the Image property, set the Image property to 0. By doing this that image data will automatically be freed from the memory.
Example (in Visual Basic)
ImageKit1.LayerNumber = 0 ImageKit1.Layer(0).Transparent = False ImageKit1.File.LoadImageFromFile(Newtone.ImageKit.LoadFileType.Load) 'The image loaded into ImageKit1.Layer(0).Image is set