Gets or sets the ClientPrinter object. Default is null (nothing).

Namespace: Neodynamic.SDK.Web
Assembly: Neodynamic.SDK.WebClientPrint (in Neodynamic.SDK.WebClientPrint.dll) Version: 1.0.2000.0 (1.0.2000.0)

Syntax

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

Remarks

The ClientPrinter object refers to the kind of printer that the client machine has attached or can reach.
  • Use a DefaultPrinter object for using the default printer installed in the client machine.
  • Use a WindowsDriverPrinter object for using a printer installed in the client machine with an associated Windows driver.
  • Use a ParallelPortPrinter object for using a printer which is connected through a parallel port in the client machine.
  • Use a SerialPortPrinter object for using a printer which is connected through a serial port in the client machine.
  • Use a NetworkPrinter object for using a Network IP/Ethernet printer which can be reached from the client machine.

See Also