←Select platform

MaximumTransferCount Property

Summary
Gets or sets the maximum number of images that can be transferred from the current TWAIN source.

Syntax
C#
C++/CLI
Python
public int MaximumTransferCount { get; set; } 
public: 
property int MaximumTransferCount { 
   int get(); 
   void set (    int ); 
} 
MaximumTransferCount # get and set (TwainSession) 

Property Value

The maximum number of images that can be transferred from the current TWAIN source.

Remarks

This property internally gets or sets the maximum transfer count capability CAP_XFERCOUNT. For more information on this capability, refer to the TWAIN specification.

Example
C#
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(); 
} 
Requirements

Target Platforms

Help Version 22.0.2023.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Twain Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.