DeviceAutoDiscardBlankPages Property |
Namespace: Atalasoft.Twain
In addition to the AutoDiscardMode options, a value from 0 to 2147483647 can be used to determine the byte size cutoff point to identify which images are to be discarded.
Use QueryCapability(DeviceCapability, Boolean) with the ICAP_AUTODISCARDBLANKPAGES capability to determine whether the driver supports this feature.
// Set the blank page detection to discard anything less than 200 bytes. this.device.AutoDiscardBlankPages = (AutoDiscardMode)200;
' Set the blank page detection to discard anything less than 200 bytes. Me.device.AutoDiscardBlankPages = CType(200, AutoDiscardMode)