This property refers to the image handle of the image loaded into the Thumbnail Control

[Visual Basic] Public WriteOnly Property Image As System.Drawing.Image
[C#] public System.Drawing.Image Image {set;}

Property Value

The Image object

Explanation

The Image property refers to the image handle of the image loaded into the Thumbnail Control. This property is used, for example, to display the results of continuous scanning as thumbnail images.  

Example

[Visual Basic.NET]
Private Sub ImageKit1_AfterScan(ByVal sender As Object, ByVal e As Newtone.ImageKit.AfterScanEventArgs) Handles ImageKit.AfterScan
    If e.Bitmap1 = Nothing Then Exit Sub
    Thumbnail1.Image = e.Bitmap1.Clone()
End Sub

[Visual C#.NET]
private void ImageKit1_AfterScan(object sender, Newtone.ImageKit.AfterScanEventArgs e)
{
    if (e.Bitmap1 == null) return;
    Thumbnail1.Image = e.Bitmap1.Clone();
}

See Also

Thumbnail Members | Newtone.ImageKit.Win.Thumbnail

 

The ImageKit.NET3 is created by Newtone Corporation