HandoutOutputType

Represents a Handout output type in PowerPoint conversion.

public class HandoutOutputType : PowerPointOutputType
Public Class HandoutOutputType
    Inherits PowerPointOutputType

Inheritance: ObjectPowerPointOutputTypeHandoutOutputType

Licensing Info

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

Examples

This example shows how to set OutputType option in PowerPoint Conversion options.
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)
        options.OutputType = New HandoutOutputType(SlidesPerPage.Two)

        ' 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);
        options.OutputType = new HandoutOutputType(SlidesPerPage.Two);

        // 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");
    }  
}

Constructors

HandoutOutputType()Initializes a new instance of the HandoutOutputType class.
HandoutOutputType(SlidesPerPage)Initializes a new instance of the HandoutOutputType class.
HandoutOutputType(SlidesPerPage, HandoutPrintOrder)Initializes a new instance of the HandoutOutputType class.

Properties

FrameSlidesgets or sets if the ouput slide is/should be framed or not.
HandoutPrintOrderProperty to specify the order of handouts.
PrintHiddenSlideSpecify if hidden slides are to be printed
(Inherited from PowerPointOutputType)
SlidesPerPageProperty to specify the number of slides per page.

Methods

Equals(Object)Determines whether the specified Object is equal to the current Object .
(Inherited from Object)
GetHashCode()Serves as a hash function for a particular type.
(Inherited from Object)
GetType()Gets the Type of the current instance.
(Inherited from Object)
ToString()Returns a String that represents the current Object .
(Inherited from Object)

See Also

ceTe.DynamicPDF.Conversion

In this topic