HandoutPrintOrder Enum

Use Handout style of publishing options as per the PowerPoint PDF export options.

public enum HandoutPrintOrder
Public Enum HandoutPrintOrder

Inheritance: ObjectValueTypeEnumHandoutPrintOrder

Fields

HandoutPrintOrder.Horizontal2Horizontal
HandoutPrintOrder.Vertical1Vertical

Licensing Info

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

Examples

This example shows how to use HandoutOrder.
Imports ceTe.DynamicPDF.Conversion

Module Module1

Sub Main()

    ' create new instance of ExcelConversionOptions.
    Dim conversionOptions As PowerPointConversionOptions = New PowerPointConversionOptions(True)
    Dim handoutOutputType As HandoutOutputType =New HandoutOutputType()
    handoutOutputType.SlidesPerPage = SlidePerPage.Four
    handoutOutputType.HandoutPrintOrder = HandoutPrintOrder.Horizontal
    conversionOptions.OutputType= handoutOutputType
        
   ' Create new instance of Converter by providing suitable parameters.
    Dim powerPointConversion As PowerPointConverter = New PowerPointConverter("C:\MyDocument.ppt",conversionOptions)

    ' Call Convert method to start conversion
    excelConversion.Convert("C:\MyOutput.pdf")

End Sub
 
End Module
using ceTe.DynamicPDF.Conversion;

class MyClass
{
    static void Main()
    {
        // create new instance of ExcelConversionOptions.
        PowerPointConversionOptions conversionOptions = new PowerPointConversionOptions(true);
        HandoutOutputType handoutOutputType = new HandoutOutputType();
        handoutOutputType.SlidesPerPage = SlidesPerPage.Four;
        handoutOutputType.HandoutPrintOrder = HandoutPrintOrder.Horizontal;
        conversionOptions.OutputType= handoutOutputType; 
        
        // Create new instance of Converter by providing suitable parameters.
        PowerPointConverter powerPoint = new PowerPointConverter(@"C:\MyDocument.ppt", conversionOptions);

        //Call Convert method to start conversion
        powerPoint.Convert(@"C:\MyOutput.pdf");
    }
}

See Also

ceTe.DynamicPDF.Conversion

In this topic