PrintJobPageList.Add

Overloads

Add(InputPdf)Add all the pages of a PDF to the list.
Add(InputPdf, Int32, Int32)Add pdf to the list.
Add(InputPdf, Rectangle, Int32, Int32)Add a pdf document .
Add(InputPdfPage)Add pdf page PrintJobPage .
Add(String)Add a pdf document .
Add(String, Int32)Add a pdf document .
Add(String, Int32, Int32)Add a pdf document .
Add(String, Rectangle, Int32, Int32)Add a pdf document .

Add(InputPdf)

Add all the pages of a PDF to the list.

public void Add(InputPdf pdf)
Sub Add(pdf As InputPdf)

Parameters

pdf
InputPdf

The InputPdf containing the pages to be added to the print job.

Licensing Info

This method is a DynamicPDF PrintManager feature. One of the following is required for non-evaluation usage:

Add(InputPdf, Int32, Int32)

Add pdf to the list.

public void Add(InputPdf pdf, int startPage, int pageCount)
Sub Add(pdf As InputPdf, startPage As Integer, pageCount As Integer)

Parameters

pdf
InputPdf

The InputPdf containing the pages to be added to the print job.

startPage
Int32

The first page from the InputPdf to be added to the print job.

pageCount
Int32

The number of pages to be added to the print job.

Licensing Info

This method is a DynamicPDF PrintManager feature. One of the following is required for non-evaluation usage:

Add(InputPdf, Rectangle, Int32, Int32)

Add a pdf document .

public void Add(InputPdf pdf, Rectangle rect, int startPage, int pageCount)
Sub Add(pdf As InputPdf, rect As Rectangle, startPage As Integer, pageCount As Integer)

Parameters

pdf
InputPdf

The InputPdf containing the pages to be added to the print job.

rect
Rectangle

The rect represents the partial page to be printed.

startPage
Int32

The first page from the PDF to be added to the print job.

pageCount
Int32

The number of pages to be added to the print job.

Licensing Info

This method is a DynamicPDF PrintManager feature. One of the following is required for non-evaluation usage:

Add(InputPdfPage)

Add pdf page PrintJobPage .

public PrintJobPage Add(InputPdfPage page)
Function Add(page As InputPdfPage) As PrintJobPage

Parameters

page
InputPdfPage

The InputPdfPage object to be added to the print job.

Returns

PrintJobPage

An PrintJobPage object.

Licensing Info

This method is a DynamicPDF PrintManager feature. One of the following is required for non-evaluation usage:

Add(String)

Add a pdf document .

public void Add(string pdfFilePath)
Sub Add(pdfFilePath As String)

Parameters

pdfFilePath
String

The file path to the PDF to be added to the print job.

Licensing Info

This method is a DynamicPDF PrintManager feature. One of the following is required for non-evaluation usage:

Add(String, Int32)

Add a pdf document .

public PrintJobPage Add(string pdfFilePath, int pageNumber)
Function Add(pdfFilePath As String, pageNumber As Integer) As PrintJobPage

Parameters

pdfFilePath
String

The file path to the PDF to be added to the print job.

pageNumber
Int32

The page number of the page to be added to the print job.

Returns

PrintJobPage

An PrintJobPage object.

Licensing Info

This method is a DynamicPDF PrintManager feature. One of the following is required for non-evaluation usage:

Add(String, Int32, Int32)

Add a pdf document .

public void Add(string pdfFilePath, int startPage, int pageCount)
Sub Add(pdfFilePath As String, startPage As Integer, pageCount As Integer)

Parameters

pdfFilePath
String

The file path to the PDF to be added to the print job.

startPage
Int32

The first page from the PDF to be added to the print job.

pageCount
Int32

The number of pages to be added to the print job.

Licensing Info

This method is a DynamicPDF PrintManager feature. One of the following is required for non-evaluation usage:

Add(String, Rectangle, Int32, Int32)

Add a pdf document .

public void Add(string pdfFilePath, Rectangle rect, int startPage, int pageCount)
Sub Add(pdfFilePath As String, rect As Rectangle, startPage As Integer, pageCount As Integer)

Parameters

pdfFilePath
String

The file path to the PDF to be added to the print job.

rect
Rectangle

The rect represents the partial page to be printed.

startPage
Int32

The first page from the PDF to be added to the print job.

pageCount
Int32

The number of pages to be added to the print job.

Licensing Info

This method is a DynamicPDF PrintManager feature. One of the following is required for non-evaluation usage:

See Also

PrintJobPageList
ceTe.DynamicPDF.Printing

In this topic