TECH TIP: Controlling Available Print To File formats Question: “How can I limit which file formats are displayed by the print dialog?” Formats can be registered and unregistered via code. Below is a list of the currently provided export devices: TppArchiveDevice – Archive File TppHTMLDevice – HTML File TppXHTMLDevice – XHTML File (Server only) TppPDFDevice – Full Article…
Search the Wiki
Viewing 181 to 183 of 409 items
PrintToDevices with AutoSearch
TECH TIP: Displaying the AutoSearch Dialog When Using the Report.PrintToDevices Method Report.PrintToDevices is an advanced method that can be used to send a report to a specific device. This method allows you to take complete control over the printing process. You must create and attach the appropriate devices before making the call to this method. When Full Article…
Native Formats
TECH TIP: ReportBuilder Output Formats ReportBuilder has an open architecture for output formats. Report –> Pages.DrawCommands[] —> Device (Printer, Screen, ..) –> final output An RB report produces Page objects. Each page object contains an array of DrawCommand objects that describe a piece of Text, a Line etc. The Device class receives the page objects Full Article…