←Select platform

SetCapability Method

Summary
Sets the value of the specified capability.

Syntax
C#
C++/CLI
Python
public void SetCapability( 
   TwainCapability capability, 
   TwainSetCapabilityMode mode 
) 
public: 
void SetCapability(  
   TwainCapability^ capability, 
   TwainSetCapabilityMode mode 
)  
def SetCapability(self,mode): 

Parameters

capability
Contains the values to set.

mode
Indicates whether to set or reset value(s).

Remarks

For more information, refer to Freeing the TWAIN Session.

Example
C#
using Leadtools; 
using Leadtools.Twain; 
 
 
public void TwainOneValueCapabilityExample(IntPtr parent) 
{ 
   TwainSession session = new TwainSession(); 
   session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None); 
   TwainCapability twCap = new TwainCapability(); 
 
   twCap.Information.ContainerType = TwainContainerType.OneValue; 
   twCap.Information.Type = TwainCapabilityType.ImageUnits; 
 
   twCap.OneValueCapability.ItemType = TwainItemType.Uint16; 
   twCap.OneValueCapability.Value = TwainCapabilityValue.UnitInches; 
 
   session.SetCapability(twCap, TwainSetCapabilityMode.Set); 
   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.