This class exposes properties for the AfterScan event.
[Visual Basic] Public Class
AfterScanEventArgs Inherits System.EventArgs
[C#] public class
AfterScanEventArgsFSystem.EventArgs
Explanation
Property | Type | Explanation |
---|---|---|
![]() |
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) |
![]() |
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) |
![]() |
[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) |
![]() |
[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. |
![]() |
[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. |
![]() |
[Visual Basic] String [C#] string |
Sets the file name when saving a file using file transfer |
![]() |
[Visual Basic] Integer [C#] int |
The number of images scanned |
![]() |
[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 |