HandoutOutputType.FrameSlides Property

gets or sets if the ouput slide is/should be framed or not.

public bool FrameSlides { get; set; }
Public Property FrameSlides As Boolean

Property Value

Boolean

Licensing Info

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

Examples

Example show how to set frame for each slide.
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 handoutOutputType As HandoutOutputType  = new HandoutOutputType()
        handoutOutputType.FrameSlides= true;
        options.OutputType = handOutputType;

        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);
        HandoutOutputType handoutOutputType  = new HandoutOutputType();
        handoutOutputType.FrameSlides= true;
        options.OutputType = handOutputType;

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

See Also

HandoutOutputType
ceTe.DynamicPDF.Conversion

In this topic