PaperSize
Represents a paper.
public class PaperSize
Public Class PaperSize
Inheritance: ObjectPaperSize
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, sets the paper size 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", "C:\MyDocument.pdf")
' Get a paper size from the list
Dim MyPaperSize As PaperSize = MyPrintJob.Printer.PaperSizes.Letter
' Set the paper size if it is supported by the printer
If (Not MyPaperSize Is Nothing) Then
MyPrintJob.PrintOptions.PaperSize = MyPaperSize
End If
' 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", @"C:\MyDocument.pdf");
// Get a paper size from the list
PaperSize paperSize = printJob.Printer.PaperSizes.Letter;
// Set the paper size if it is supported by the printer
if (paperSize != null)
{
printJob.PrintOptions.PaperSize = paperSize;
}
// Print the job
printJob.Print();
}
}
Properties
DeviceContextPaper | Gets the value of the paper size from DC_PAPERS array. |
Height | Gets the height of the paper. |
Name | Gets the name of the paper size. |
Width | Gets the width of the paper. |
Methods
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) |