public TwainCapability GetCapability(
TwainCapabilityType type,
TwainGetCapabilityMode mode
)
public:
TwainCapability^ GetCapability(
TwainCapabilityType type,
TwainGetCapabilityMode mode
)
def GetCapability(self,mode):
type
The capability to get.
mode
The capability values to get.
A TwainCapability object that represents the specified capability value(s).
For more information, refer to Freeing the TWAIN Session.
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();
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document