OutlineViewOutputType
Use Outline style of publishing options as per the PowerPoint PDF export options.
public class OutlineViewOutputType : PowerPointOutputType
Public Class OutlineViewOutputType
    Inherits PowerPointOutputType
Inheritance: ObjectPowerPointOutputTypeOutlineViewOutputType
Licensing Info
This class 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 use outlineview outputType.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 outlineViewOutputType  As OutlineViewOutputType = New OutlineViewOutputType()
        options.OutputType = outlineViewOutputType
        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;
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
| PrintHiddenSlide | Specify 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)  |