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.Horizontal | 2 | Horizontal | 
| HandoutPrintOrder.Vertical | 1 | Vertical | 
Licensing Info
This enum is a DynamicPDF Converter 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 Converter selected.
 - A DynamicPDF Converter for .NET v3.X Developer license.
 
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");
    }
}