←Select platform

QuerySourceInformation Method

Summary

Gets information about the available TWAIN Data Sources.

Syntax

C#
VB
C++
public TwainSourceInformation[] QuerySourceInformation() 
Public Function QuerySourceInformation() As Leadtools.Twain.TwainSourceInformation() 
public: 
Leadtools.Twain.array<TwainSourceInformation>^ QuerySourceInformation();  

Remarks

For more information, refer to Managing the TWAIN Source.

Example

C#
VB
using Leadtools; 
using Leadtools.Twain; 
 
public void QuerySourceInformationExample(IntPtr parent) 
{ 
   string buffer; 
   TwainSession session = new TwainSession(); 
   session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None); 
 
   TwainSourceInformation[] srcInfo = session.QuerySourceInformation(); 
 
   for (int i = 0; i < srcInfo.Length; i++) 
   { 
      buffer = String.Format("Source Name = {0}\nProduct Family Name = {1}\nManufacturer Name = {2}\nTwain source supported version = {3}\n", 
         srcInfo[i].Name, srcInfo[i].ProductFamily, srcInfo[i].Manufacturer, srcInfo[i].TwainSourceVersion); 
 
      MessageBox.Show(buffer); 
   } 
   session.Shutdown(); 
} 
Imports Leadtools 
Imports Leadtools.Twain 
 
Public Sub QuerySourceInformationExample(ByVal parent As IntPtr) 
   Dim buffer As String 
   Dim session As TwainSession = New TwainSession() 
   session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None) 
 
   Dim srcInfo As TwainSourceInformation() = session.QuerySourceInformation() 
 
   Dim i As Integer = 0 
   Do While i < srcInfo.Length 
      buffer = String.Format("Source Name = {0}" & Constants.vbLf & "Product Family Name = {1}" & Constants.vbLf & 
                             "Manufacturer Name = {2}" & Constants.vbLf & "Twain source supported version = {3}" & 
                             Constants.vbLf, srcInfo(i).Name, srcInfo(i).ProductFamily, srcInfo(i).Manufacturer, 
                             srcInfo(i).TwainSourceVersion) 
      MessageBox.Show(buffer) 
      i += 1 
   Loop 
   session.Shutdown() 
End Sub 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Twain Assembly