Gets the
TwainFastConfiguration object used in the scan configuration being tested.
Syntax
Example
Visual Basic | Copy 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