public bool EnableDuplexScanning { get; set; }
Enables or disables the duplex mode. Possible values are: true: Enable the duplex mode. false: Disable the duplex mode.
This property internally gets or sets the duplex enabled capability CAP_DUPLEXENABLED. For more information on this capability, refer to the TWAIN specification.
using Leadtools;
using Leadtools.Twain;
public void EnableDuplexScanningPropertyExample(IntPtr parent)
{
TwainSession session = new TwainSession();
session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None);
bool enableDuplex = session.EnableDuplexScanning;
int duplexMode = (int)session.DuplexScanningMode;
int maxXfer = session.MaximumTransferCount;
if (enableDuplex == false)
{
session.EnableDuplexScanning = true;
}
if (maxXfer != 10)
session.MaximumTransferCount = 10;
session.Shutdown();
}