DuplexMode Enum

Represents duplex modes.

public enum DuplexMode
Public Enum DuplexMode

Inheritance: ObjectValueTypeEnumDuplexMode

Fields

DuplexMode.DuplexHorizontal3Duplex mode that flips the page horizontally.
DuplexMode.DuplexVertical2Duplex mode that flips the page vertically.
DuplexMode.Simplex1Simplex (non duplex) mode.

Licensing Info

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

Examples

The following examples creates a print job, sets the duplex mode if it is supported by the printer 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 duplex mode if it is supported by the printer
        If (MyPrintJob.Printer.Duplex) Then
            MyPrintJob.PrintOptions.DuplexMode = DuplexMode.DuplexHorizontal
        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");

        // Set the duplex mode if it is supported by the printer
        if (printJob.Printer.Duplex)
        {
            printJob.PrintOptions.DuplexMode = DuplexMode.DuplexHorizontal;
        }

        // Print the job
        printJob.Print();
    }
}

See Also

ceTe.DynamicPDF.Printing

In this topic