HandoutOutputType.HandoutPrintOrder Property
Property to specify the order of handouts.
public HandoutPrintOrder HandoutPrintOrder { get; set; }
Public Property HandoutPrintOrder As HandoutPrintOrder
Property Value
Licensing Info
This property 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 specify the order of Handouts during conversion.Imports ceTe.DynamicPDF.Conversion
Imports ceTe.DynamicPDF.Conversion.PowerPoint
Module Module1
Sub Main()
' Set PowerPoint conversion options
Dim options As PowerPointConversionOptions = New PowerPointConversionOptions(650.0, 750.0, 75.0)
Dim handoutOutputType As HandoutOutputType = new HandoutOutputType()
handoutOutputType.SlidesPerPage = SlidesPerPage.Six
handoutOutputType.HandoutPrintOrder = HandoutPrintOrder.Vertical
options.OutputType = handoutOutputType
' Create new instance of Converter by providing suitable parameters.
Dim powerPointConverter As PowerPointConverter = New PowerPointConverter("C:\MyDocument.ppt, options)
' Call Convert method to start conversion
powerPointConverter.Convert("C:\MyOutput.pdf")
End Sub
End Module
using System;
using ceTe.DynamicPDF.Conversion;
using ceTe.DynamicPDF.Conversion.PowerPoint;
class MyClass
{
static void Main()
{
// Set PowerPoint conversion options
PowerPointConversionOptions options = new PowerPointConversionOptions(600.0,700.0,75.0);
HandoutOutputType handoutOutputType = new HandoutOutputType();
handoutOutputType.SlidesPerPage = SlidesPerPage.Six;
handoutOutputType.HandoutPrintOrder = HandoutPrintOrder.Vertical;
options.OutputType = handoutOutputType;
// Create new instance of Converter by providing suitable parameters.
PowerPointConverter powerPointConverter = new PowerPointConverter("C:\MyDoucment.ppt, options);
//Call Convert method to start conversion
powerPointConverter.Convert(@"C:\MyOutput.pdf");
}
}