Leadtools.Twain Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
FastConfiguration Property
See Also  Example
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();
}

Return 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 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also