Returns or sets whether the driver of the printer displays the User Interface.

Namespace: Dynamsoft.DotNet.TWAIN
Assembly: DynamicDotNetTWAIN (in DynamicDotNetTWAIN.dll) Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public bool IfShowPrintUI { get; set; }
Visual Basic
Public Property IfShowPrintUI As Boolean
	Get
	Set
Visual C++
public:
property bool IfShowPrintUI {
	bool get ();
	void set (bool value);
}

Remarks

If the property is true(default), the driver of the printer will display its User Interface when invoking the Print method. If the property is false, the User Interface will not be displayed and the print process will get started immediately.

Exceptions

ExceptionCondition
Dynamsoft.DotNet.TWAIN..::..TwainException When an error occurs and IfThrowException property is true, an exception will be thrown. When IfThrowException property is false, please check ErrorCode and ErrorString.

See Also