ImageUnit Property

Summary

Gets or sets the image unit value used to transfer images from the current TWAIN source.

Syntax
C#
VB
C++
public TwainImageUnit ImageUnit { get; set; } 
Public Property ImageUnit As TwainImageUnit 
public: 
property TwainImageUnit ImageUnit { 
   TwainImageUnit get(); 
   void set (    TwainImageUnit ); 
} 

Property Value

The image unit value used to transfer images from the current TWAIN source.

Remarks

This property internally gets or sets the image unit capability ICAP_UNITS. For more information on this capability, refer to the TWAIN specification.

Example
C#
VB
using Leadtools; 
using Leadtools.Twain; 
 
public void ImageUnitPropertyExample(IntPtr parent) 
{ 
   TwainSession session = new TwainSession(); 
   session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None); 
 
   int unit = (int)session.ImageUnit; 
   int bpp = session.ImageBitsPerPixel; 
 
   if (unit != (int)TwainCapabilityValue.UnitInches) 
      session.ImageUnit = (TwainImageUnit)TwainCapabilityValue.UnitInches; 
 
   if (bpp != 24) 
      session.ImageBitsPerPixel = 24; 
 
   session.Shutdown(); 
} 
Imports Leadtools 
Imports Leadtools.Twain 
 
Public Sub ImageUnitPropertyExample(ByVal parent As IntPtr) 
   Dim session As TwainSession = New TwainSession() 
   session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None) 
 
   Dim unit As Integer = CInt(session.ImageUnit) 
   Dim bpp As Integer = session.ImageBitsPerPixel 
 
   If unit <> CInt(TwainCapabilityValue.UnitInches) Then 
      session.ImageUnit = CType(TwainCapabilityValue.UnitInches, TwainImageUnit) 
   End If 
 
   If bpp <> 24 Then 
      session.ImageBitsPerPixel = 24 
   End If 
 
   session.Shutdown() 
End Sub 

Requirements

Target Platforms

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

Leadtools.Twain Assembly