←Select platform

ItemType Property

Summary
Gets or sets the type of data contained in the TwainArrayCapability object.

Syntax
C#
C++/CLI
Python
public TwainItemType ItemType { get; set; } 
public: 
property TwainItemType ItemType { 
   TwainItemType get(); 
   void set (    TwainItemType ); 
} 
ItemType # get and set (TwainArrayCapability) 

Property Value

The type of data contained in the TwainArrayCapability object.

Remarks

For more information, refer to How to Work with the Container.

Example
C#
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(); 
} 
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.