This class exposes properties for the AfterScan event.

[Visual Basic] Public Class AfterScanEventArgs Inherits System.EventArgs
[C#] public class AfterScanEventArgsFSystem.EventArgs

Explanation

Property Type Explanation
 Bitmap1 System.Drawing.Bitmap Retrieves the Bitmap Class for storing 1, 4, 8, and 24 bit images. During file transfers, this is null (Nothing in Visual Basic)
 Bitmap2 System.Drawing.Bitmap Retrieves the Bitmap Class for storing 16 bit grayscale and 48 bit images. During file transfers, this is null (Nothing in Visual Basic)
 BitOrder [Visual Basic] Integer
[C#] int
Refers to whether the bits in each byte of the scanned image start from the left or start from the right.
0: Start from the right (LSB), 1: Start from the left (MSB)
 Cancel [Visual Basic] Boolean
[C#] bool
Sets whether or not the scan process is canceled. By setting this property to True, the process can be canceled.
 Dispose [Visual Basic] Boolean
[C#] bool
Sets whether or not the Bitmap1 and Bitmap2 resource will be disposed after the event has finished. When this arguement is set to true, the Bitmap1 and Bitmap2 resource will be disposed. When this arguement is set to false, these resources will not be disposed. The default value is true.
 FileName [Visual Basic] String
[C#] string
Sets the file name when saving a file using file transfer
 ImageNumber [Visual Basic] Integer
[C#] int
The number of images scanned 
 RawData [Visual Basic] Byte()
[C#] byte[]
Retrieves the scanned data (byte array) when using memory transfer compression mode. This is null (Nothing in Visual Basic) when using native transfer or uncompression file transfer

See Also

ImageKit Members | Newtone.ImageKit.Wpf.ImageKit

The ImageKit WPF is created by Newtone Corporation