SlideOutputType

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

public class SlideOutputType : PowerPointOutputType
Public Class SlideOutputType
    Inherits PowerPointOutputType

Inheritance: ObjectPowerPointOutputTypeSlideOutputType

Licensing Info

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

Examples

Example show how to use SlideOutput type.
Imports ceTe.DynamicPDF.Conversion

Module Module1

    Sub Main()
  
        ' Set PowerPoint conversion options
        Dim options As PowerPointConversionOptions = New PowerPointConversionOptions(650.0, 750.0, 75.0)
        Dim slideOutputType  As SlideOutputType = New SlideOutputType()
        options.OutputType = slideOutputType

        Dim powerPoint As PowerPointConverter =new PowerPointConverter ("C:\MyDocument.ppt",options)
         
        ' Call Convert method to do conversion synchronously
        powerPoint.Convert( "C:\MyOutput.pdf")

    End Sub
End Module
using System;
using ceTe.DynamicPDF.Conversion;

class MyClass
{
    static void Main()
    {
        // Set PowerPoint conversion options
        PowerPointConversionOptions options = new PowerPointConversionOptions(650.0,750.0,75.0);
        SlideOutputType slideOutputType  = new SlideOutputType()
        options.OutputType = slideOutputType;

        PowerPointConverter powerPoint=new PowerPointConverter("C:\MyDocument.ppt",options);
        powerPoint.Convert("C:\MyOutput.pdf");
    }  
}

Constructors

SlideOutputType()output type of the slide

Properties

FrameSlidesgets or sets if the ouput slide is/should be framed or not.
PrintHiddenSlideSpecify if hidden slides are to be printed
(Inherited from PowerPointOutputType)

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