Leadtools TWAIN (Leadtools.Twain assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
FastConfiguration Property
See Also 
Leadtools.Twain Namespace > TwainFastConfigurationEventArgs Class : FastConfiguration Property



Gets the TwainFastConfiguration object used in the scan configuration being tested.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property FastConfiguration As TwainFastConfiguration
Visual Basic (Usage)Copy Code
Dim instance As TwainFastConfigurationEventArgs
Dim value As TwainFastConfiguration
 
value = instance.FastConfiguration
C# 
public TwainFastConfiguration FastConfiguration {get;}
C++/CLI 
public:
property TwainFastConfiguration FastConfiguration {
   TwainFastConfiguration get();
}

Property Value

The TwainFastConfiguration object used in the scan configuration being tested.

Example

Visual BasicCopy Code
Public Sub FastConfigurationExample(ByVal sender As Object, ByVal e As TwainFastConfigurationEventArgs)
   If e.FastConfiguration.Success Then
      ' set your code here
   End If
   e.Stop = False
End Sub
C#Copy Code
public void FastConfigurationExample(object sender, TwainFastConfigurationEventArgs e)
{
   if(e.FastConfiguration.Success)
   {
      // set your code here
   }
   e.Stop = false;
}

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also