Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.9.21
|
Leadtools.Twain Namespace > TwainFastConfigurationEventArgs Class : FastConfiguration Property |
public TwainFastConfiguration FastConfiguration {get;}
'Declaration
Public ReadOnly Property FastConfiguration As TwainFastConfiguration
'Usage
Dim instance As TwainFastConfigurationEventArgs Dim value As TwainFastConfiguration value = instance.FastConfiguration
public: property TwainFastConfiguration FastConfiguration { TwainFastConfiguration get(); }
Imports Leadtools Imports Leadtools.Twain 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
using Leadtools; using Leadtools.Twain; public void FastConfigurationExample(object sender, TwainFastConfigurationEventArgs e) { if(e.FastConfiguration.Success) { // set your code here } e.Stop = false; }