VerticalAlign Enum
Represents the vertical alignment to use when printing pages.
public enum VerticalAlign
Public Enum VerticalAlign
Inheritance: ObjectValueTypeEnumVerticalAlign
Fields
VerticalAlign.Bottom | 3 | Bottom vertical alignment. |
VerticalAlign.Middle | 2 | Middle vertical alignment. |
VerticalAlign.Top | 1 | Top vertical alignment. |
Licensing Info
This enum 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 vertical align to top 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")
' Set the vertical alignment
MyPrintJob.PrintOptions.VerticalAlign = VerticalAlign.Top
' 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");
// Set the vertical alignment
printJob.PrintOptions.VerticalAlign = VerticalAlign.Top;
// Print the job
printJob.Print();
}
}