←Select platform

GetInformation Method

Summary
Gets the specified extended image information.

Syntax
C#
C++/CLI
Python
public TwainInformation GetInformation( 
   int index 
) 
public: 
TwainInformation^ GetInformation(  
   int index 
)  
def GetInformation(self,index): 

Parameters

index
Index of the extended image information to get. Possible values can be between 0 and Count - 1.

Example
C#
using Leadtools; 
using Leadtools.Twain; 
 
 
public void TwainExtraImageInformationConstructorExample(IntPtr parent) 
{ 
   TwainSession session = new TwainSession(); 
   session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None); 
 
   TwainExtraImageInformation extraImgInfo = new TwainExtraImageInformation(2); 
   try 
   { 
      extraImgInfo.GetInformation(0).InfoId = TwainExtendedImage.BarcodeCount; 
      extraImgInfo.GetInformation(0).ItemType = TwainItemType.Uint32; 
      extraImgInfo.GetInformation(0).ConditionCode = TwainConditionCode.Success; 
      extraImgInfo.GetInformation(1).InfoId = TwainExtendedImage.BarcodeType; 
      extraImgInfo.GetInformation(1).ItemType = TwainItemType.Uint32; 
      session.UpdateExtraImageInformation(extraImgInfo); 
      //. 
      //. Do processing to returned values 
      //. 
   } 
   catch (Exception ex) 
   { 
      MessageBox.Show(ex.Message); 
   } 
   finally 
   { 
      extraImgInfo.Dispose(); 
   } 
 
   session.Shutdown(); 
} 
Requirements

Target Platforms

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

Leadtools.Twain Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.