public int MaximumTransferCount { get; set; }
The maximum number of images that can be transferred from the current TWAIN source.
This property internally gets or sets the maximum transfer count capability CAP_XFERCOUNT. 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();
}