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 > TwainSession Class : EnableShowUserInterfaceOnly Property |
public bool EnableShowUserInterfaceOnly {get; set;}
'Declaration
Public Property EnableShowUserInterfaceOnly As Boolean
'Usage
Dim instance As TwainSession Dim value As Boolean instance.EnableShowUserInterfaceOnly = value value = instance.EnableShowUserInterfaceOnly
Imports Leadtools Imports Leadtools.Twain Public Sub TestEnableShowUI(ByVal parent As IntPtr) Dim session As TwainSession = New TwainSession() session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None) session.SelectSource(String.Empty) session.EnableShowUserInterfaceOnly = True session.ShowTemplateDialog(Path.Combine(LEAD_VARS.ImagesDir, "test.ltt")) session.Shutdown() End Sub Public NotInheritable Class LEAD_VARS Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images" End Class
using Leadtools; using Leadtools.Twain; public void TestEnableShowUI(IntPtr parent) { TwainSession session = new TwainSession(); session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None); session.SelectSource(string.Empty); session.EnableShowUserInterfaceOnly = true; session.ShowTemplateDialog(Path.Combine(LEAD_VARS.ImagesDir, "Out_test.ltt")); session.Shutdown(); } static class LEAD_VARS { public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images"; }