←Select platform

EnableDuplexScanning Property

Summary
Enables or disables the duplex mode.

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

Property Value

Enables or disables the duplex mode. Possible values are: true: Enable the duplex mode. false: Disable the duplex mode.

Remarks

This property internally gets or sets the duplex enabled capability CAP_DUPLEXENABLED. 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.