PowerPointSlideRange

Represents a range of slides to convert.

public class PowerPointSlideRange
Public Class PowerPointSlideRange

Inheritance: ObjectPowerPointSlideRange

Licensing Info

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

Examples

Example shows how to use powerpointSlideRage property.
Imports ceTe.DynamicPDF.Conversion

Module Module1

    Sub Main()
  
        ' Set PowerPoint conversion options
        Dim options As PowerPointConversionOptions = New PowerPointConversionOptions(650.0, 750.0, 75.0)
        options.PowerPointSlideRange.End = 1

        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);
        options.PowerPointSlideRange.End = 1;

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

Properties

Endending slide number until which the conversion needs to be done
Startstarting slide number from where the conversion should start

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