index
Index into the array of values.
value
The value to set.
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 TwainArrayCapabilityExample(IntPtr parent)
{
TwainSession session = new TwainSession();
session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None);
TwainCapability twCap = new TwainCapability();
twCap.Information.ContainerType = TwainContainerType.Array;
twCap.Information.Type = TwainCapabilityType.ImageFilter;
twCap.ArrayCapability.ItemType = TwainItemType.Uint16;
twCap.ArrayCapability.Count = 1; // If scanner supports multiple filters, Count can be set to 2 or higher.
twCap.ArrayCapability.SetValue(0, TwainCapabilityValue.FilterRed);
// If scanner supports multiple filters, additional filters can be added to the array as in the following line
// twCap.ArrayCapability.SetValue(1, TwainCapabilityValue.FilterGreen);
session.SetCapability(twCap, TwainSetCapabilityMode.Set);
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