Returns or sets whether the Automatic Document Feeder (ADF) is enabled. This is a runtime property.

Namespace: Dynamsoft.DotNet.TWAIN
Assembly: DynamicDotNetTWAIN (in DynamicDotNetTWAIN.dll) Version: 3.0.0.0 (3.0.0.0)

Syntax

C#
public bool IfFeederEnabled { get; set; }
Visual Basic
Public Property IfFeederEnabled As Boolean
	Get
	Set

Remarks

If the value of this property is true, Source must acquire data from the document feeder acquire area and other feeder capabilities can be used. If the value of this property is false, Source must acquire data from the non-feeder acquire area and no other feeder capabilities can be used. Call OpenSource() method before using this property.

Exceptions

ExceptionCondition
Dynamsoft.DotNet.TWAIN..::..TwainException When an error occurs and IfThrowException property is true, an exception will be thrown. When IfThrowException property is false, please check ErrorCode and ErrorString.

See Also