OutlineViewOutputType

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

public class OutlineViewOutputType : PowerPointOutputType

Inheritance: ObjectPowerPointOutputTypeOutlineViewOutputType

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 use outlineview outputType.
using System;
using ceTe.DynamicPDF.Conversion;
using ceTe.DynamicPDF.Conversion.PowerPoint;

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

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

Constructors

OutlineViewOutputType()

Properties

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