(Document/Medical only) Gets all available configurations for the current session.
public Leadtools.RasterCollection<TwainFastConfiguration> FindConfiguration(
int bitsPerPixel,
Leadtools.Twain.TwainTransferMechanism transferMechanism,
int bufferIteration
)
Public Function FindConfiguration( _
ByVal bitsPerPixel As Integer, _
ByVal transferMechanism As Leadtools.Twain.TwainTransferMechanism, _
ByVal bufferIteration As Integer _
) As Leadtools.RasterCollection(Of TwainFastConfiguration)
public:
Leadtools.RasterCollection<TwainFastConfiguration>^ FindConfiguration(
int bitsPerPixel,
Leadtools.Twain.TwainTransferMechanism transferMechanism,
int bufferIteration
)
bitsPerPixel
The resulting file's pixel depth.
Note that not all bits per pixel are available to all file formats. Use 0 for bitsPerPixel to store the file using the closest BitsPerPixel value supported by that format.
transferMechanism
The TWAIN transfer mode to use.
bufferIteration
The number of memory configurations that will be tested. The maximum value for this parameter is 10.
An array of the available configurations for the current session.
For more information, refer to Fast TWAIN (Scan Configurations).
Imports Leadtools
Imports Leadtools.Twain
Public Sub FindConfigurationExample(ByVal parent As IntPtr)
Dim session As TwainSession = New TwainSession()
session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None)
Try
Dim twFastConfigs As RasterCollection(Of TwainFastConfiguration) = session.FindConfiguration(1, TwainTransferMechanism.Memory, 5)
MessageBox.Show("GetScanConfigs method was successful.")
Dim msg As String
msg = String.Format("Scan Configuration count = {0}" & Constants.vbLf, twFastConfigs.Count)
MessageBox.Show(msg)
msg = String.Format("Transfer Mode = {0}" & Constants.vbLf & "File Format = {1}" & Constants.vbLf & "Buffer Size = {2}" & Constants.vbLf & "Required Time = {3}" & Constants.vbLf, twFastConfigs(0).TransferMechanism, _
twFastConfigs(0).ImageFormat, twFastConfigs(0).BufferSize, twFastConfigs(0).RequiredTime)
MessageBox.Show(msg, "Scan Configurations...")
Catch ex As Exception
MessageBox.Show(ex.Message, "Error!!!")
End Try
session.Shutdown()
End Sub
using Leadtools;
using Leadtools.Twain;
public void FindConfigurationExample(IntPtr parent)
{
TwainSession session = new TwainSession();
session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None);
try
{
RasterCollection<TwainFastConfiguration> twFastConfigs = session.FindConfiguration(1, TwainTransferMechanism.Memory, 5);
MessageBox.Show("GetScanConfigs method was successful.");
string msg;
msg = String.Format("Scan Configuration count = {0}\n", twFastConfigs.Count);
MessageBox.Show(msg);
msg = String.Format("Transfer Mode = {0}\nFile Format = {1}\nBuffer Size = {2}\nRequired Time = {3}\n",
twFastConfigs[0].TransferMechanism,
twFastConfigs[0].ImageFormat,
twFastConfigs[0].BufferSize,
twFastConfigs[0].RequiredTime);
MessageBox.Show(msg, "Scan Configurations...");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error!!!");
}
session.Shutdown();
}
Products |
Support |
Feedback: FindConfiguration Method - Leadtools.Twain |
Introduction |
Help Version 19.0.2017.3.22
|
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.