public object GetValue(int index)
public:Object^ GetValue(int index)
def GetValue(self,index):
index
Index into the array of values.
The value of the TwainEnumerationCapability object from the specified index.
index must be between 0 and Count. For more information, refer to How to Work with the Container.
using Leadtools;using Leadtools.Twain;public void TwainEnumerationCapabilityGetValueExample(IntPtr parent){TwainSession session = new TwainSession();session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None);TwainCapability twCap = session.GetCapability(TwainCapabilityType.ImageUnits, TwainGetCapabilityMode.GetValues);if (twCap.Information.ContainerType == TwainContainerType.Enumeration){TwainEnumerationCapability enumCap = twCap.EnumerationCapability;for (int i = 0; i < enumCap.Count; i++){object capVal = enumCap.GetValue(i);string msg = string.Format("Capability Value({0}) = {1}", i, capVal.ToString());MessageBox.Show(msg);}}elseMessageBox.Show("Container type is not enumeration");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
