SlidesPerPage Enum

Represents number of slides per page.

public enum SlidesPerPage
Public Enum SlidesPerPage

Inheritance: ObjectValueTypeEnumSlidesPerPage

Fields

SlidesPerPage.Four4Four slides per page.
SlidesPerPage.Nine9Nine slides per page.
SlidesPerPage.One1Single slide per page.
SlidesPerPage.Six6Six slides per page.
SlidesPerPage.Three3Three slides per page.
SlidesPerPage.Two2Two slides per page.

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 convert the presentation with number of slide per page conversionOptions.
Imports ceTe.DynamicPDF.Conversion


Module Module1

    Sub Main()
  
        ' Set PowerPoint conversion options
        Dim options As PowerPointConversionOptions = New PowerPointConversionOptions(650.0, 750.0, 75.0)
        HandoutOutputType handoutOutputType  = new HandoutOutputType()
        handoutOutputType.SlidesPerPage = SlidesPerPage.Two
        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.Two;
        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");
    }  
}

See Also

ceTe.DynamicPDF.Conversion

In this topic