PrinterInstaller Class
Summary
Provides connecting and installing support for the LEADTOOLS Network Virtual Printer functionality.
Syntax
public static class PrinterInstaller
public ref class PrinterInstaller abstract sealed
Example
using Leadtools.Printer.Client.Installer;
public void PrinterInstallerExample()
{
try
{
PrinterInstaller.SetPrinterConnectionDll("Test Printer", "C:\\Test Dll.dll", "Test Server");
}
catch (PrinterDriverClientException ex)
{
Console.WriteLine(ex.Message);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}