InputPdf
Represents a pdf containing the pages to be added to the print job.
public class InputPdf : IDisposable
Public Class InputPdf
Implements IDisposable
Inheritance: ObjectInputPdf
Implements: IDisposable
Licensing Info
This class is a DynamicPDF PrintManager feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF PrintManager selected.
- A DynamicPDF PrintManager for .NET v4.X Developer license.
Examples
The following examples creates a print job, adds PDF pages to print the job and prints the job.Imports System
Imports ceTe.DynamicPDF.Printing
Module MyModule
Sub Main()
' Create a print job
Dim MyPrintJob As PrintJob = New PrintJob("PrinterName")
' Create an InputPdf object to hold the source PDF
Dim MyInputPdf As InputPdf = New InputPdf("C:\MyDocument.pdf", "password")
' Add the InputPdf's pages to the print job
MyPrintJob.Pages.Add(MyInputPdf)
' Print the job
MyPrintJob.Print()
End Sub
End Module
using System;
using ceTe.DynamicPDF.Printing;
class MyClass
{
static void Main()
{
// Create a print job
PrintJob printJob = new PrintJob("PrinterName");
// Create an InputPdf object to hold the source PDF
InputPdf inputPdf = new InputPdf(@"C:\MyDocument.pdf", "password");
// Add the InputPdf's pages to the print job
printJob.Pages.Add(inputPdf);
// Print the job
printJob.Print();
}
}
Constructors
InputPdf(Byte[]) | Initializes a new instance of the InputPdf class. |
InputPdf(Byte[], String) | Initializes a new instance of the InputPdf class. |
InputPdf(String) | Initializes a new instance of the InputPdf class. |
InputPdf(String, String) | Initializes a new instance of the InputPdf class. |
Properties
Attachments | Gets the Attachment Files of PDF document. |
Author | Gets the author of the PDF document. |
Creator | Gets the creator of the PDF document. |
Keywords | Gets the keywords of the PDF document. |
Pages | Gets the InputPdfPageList object that represents a collection of pages. |
Producer | Gets the producer of the PDF document. |
Subject | Gets the subject of the PDF document. |
Title | Gets the title of the PDF document. |
Methods
Dispose() | Clean up any resources being used. |
Equals(Object) | Determines whether the specified Object is equal to the current Object . (Inherited from Object) |
GetHashCode() | Serves as a hash function for a particular type. (Inherited from Object) |
GetType() | Gets the Type of the current instance. (Inherited from Object) |
ToString() | Returns a String that represents the current Object . (Inherited from Object) |