Remote Printing SDK for Thinfinity - Delphi
Delphi
Last updated
Delphi
Last updated
The Remote Printing SDK allows you to programmatically send commands and documents to the end-user’s printer. Currently, raw printers are supported.
The following table shows the methods of the Remote Printer SDK.
The Remote Printer SDK tasks:
Retrieve the printer list.
Prepare the connection for printing.
Send data to the printer
Inform the end of the printing process.
In case of any error must be Cancel the printing or if the user wants.
In case of any error, can get it more details using LastError method
The following table shows the methods of the Remote Printer SDK.
Methods
WideString - Character or string used as delimiter of the printer names on Printers param.
Integer - Out last error code. If ErrorCode is 0, there is not error
Integer - Determines the type of priting. Now support PRINT_TYPE_RAW = 1
WideString - The document identifier obtained by BeginDoc
WideString - The document identifier obtained by BeginDoc
WideString - The document identifier obtained by BeginDoc
Integer - Determines the type of printing.
Now support:
PRINT_TYPE_XPS = 3
PRINT_TYPE_PDF = 4
PRINT_TYPE_DIRECT = 5
GetPrinters
GetPrinters(const Delimiter: WideString; out Printers: WideString): WordBool;
Retrieve all printer names detected on the end-user's side. Returns a string delimited by the Delimiter parameter. Returns: True if is successful and False in case of error.
LastError
LastError(out ErrorCode: Integer; out ErrorMessage: WideString);
Retrieves the last ErrorCode and ErrorMessage. Can be used when a call to any method returns False. Returns: nothing
BeginDoc
BeginDoc(PrintType: Integer; const PrinterName: WideString; const DocName: WideString; Encoding: Integer; out DocID: WideString): WordBool;
It makes the connection with the printer and initializes the print job. Creates an unique Document Id to identify a print job in subsequent calls. Returns: True if the communication and actions on the selected printer was sent successful.
Print(const DocID: WideString; const Data: WideString): WordBool;
Sends data to the printer using the document identifier obtained using BeginDoc..
This method can be called as many times as needed to send commands or data until the entire print job is completed. Returns: True if nothing went wrong.
EndDoc
EndDoc(const DocID: WideString): WordBool
Ends the print job. This completes the print process and sends the print job to the spooler. Returns: True if the work was sent to the printer spooler.
Abort
Abort(const DocID: WideString): WordBool
Cancels the printer job.
This method must be called in case of the methods Print or EndDoc return False.
PrintFile
PrintFile(PrintType: Integer; const FileName: WideString; const PrinterName: WideString): WordBool;
Sends the file to the print spooler of the remote printer. In case of PrinterName is Empty the default remote printer is used.
Remote Printer SDK Library
Thinfinity.RemotePrinter.dll
This module presents an COM API to be consumed by a Windows application running under Thinfinity VirtualUI or Thinfinity Remote Desktop.
Thinfinity Local Agent and Local Printer Plugin
Executable and library needed to work as a nexus between the web browser and local or network resources, otherwise inaccessible due to browser’s security restrictions.
Thinfinity Virtual Channels
A proprietary Virtual Channel System used to communicate the Remote Printer SDK with the Local Printer plugin.