←Select platform

GetCapability Method

Summary
Gets the TwainCapability value at the specified index from the array of capabilities supported by the selected TWAIN source.

Syntax
C#
C++/CLI
Python
def GetCapability(self,mode): 

Parameters

type
The capability to get.

mode
The capability values to get.

Return Value

A TwainCapability object that represents the specified capability value(s).

Remarks

For more information, refer to Freeing the TWAIN Session.

Example
C#
using Leadtools; 
using Leadtools.Twain; 
 
 
public void GetCapabilityExample(IntPtr parent) 
{ 
   TwainSession session = new TwainSession(); 
   session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None); 
 
   TwainCapability twCap; 
   twCap = session.GetCapability(TwainCapabilityType.ImageUnits, TwainGetCapabilityMode.GetCurrent); 
   if (twCap == null) 
      MessageBox.Show("Error Getting Capability"); 
 
   session.Shutdown(); 
} 
Requirements

Target Platforms

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

Leadtools.Twain Assembly

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