HandoutOutputType Constructors

Overloads

HandoutOutputType()Initializes a new instance of the HandoutOutputType class.
HandoutOutputType(SlidesPerPage)Initializes a new instance of the HandoutOutputType class.
HandoutOutputType(SlidesPerPage, HandoutPrintOrder)Initializes a new instance of the HandoutOutputType class.

HandoutOutputType()

Initializes a new instance of the HandoutOutputType class.

public HandoutOutputType()
Public Sub New ()

Licensing Info

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

Examples

This example shows how to set OutputType option in PowerPoint Conversion options.
Imports ceTe.DynamicPDF.Conversion
Imports ceTe.DynamicPDF.Conversion.PowerPoint

Module Module1

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

        ' Call Convert method to do conversion synchronously
        Dim powerPoint As PowerPointConverter = New PowerPointConverter("C:\MyDocument.ppt",options)
        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(600.0,700.0,75.0);
        options.OutputType = new HandoutOutputType();

        // Call Convert method to start conversion synchronously
        PowerPointConverter powerPoint = new PowerPointConverter("C:\MyDocument.ppt",options);
        powerPoint.Convert("C:\MyOutput.pdf");
    }  
}

HandoutOutputType(SlidesPerPage)

Initializes a new instance of the HandoutOutputType class.

public HandoutOutputType(SlidesPerPage slidesPerPage)
Public Sub New (slidesPerPage As SlidesPerPage)

Parameters

slidesPerPage
SlidesPerPage

Instance of SlidesPerPage class.

Licensing Info

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

Examples

This example shows how to set OutputType option in PowerPoint Conversion options.
Imports ceTe.DynamicPDF.Conversion
Imports ceTe.DynamicPDF.Conversion.PowerPoint

Module Module1

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

        ' Create new instance of Converter by providing suitable parameters.
        Dim powerPointConverter As PowerPointConverter = New PowerPointConverter("C:\MyDocument.ppt, options)

        ' Call Convert method to start conversion
        powerPointConverter.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(600.0,700.0,75.0);
        options.OutputType = new HandoutOutputType(SlidesPerPage.Two);

        // Create new instance of Converter by providing suitable parameters.
        PowerPointConverter powerPointConverter = new PowerPointConverter("C:\MyDoucment.ppt, options);

        //Call Convert method to start conversion
        powerPointConverter.Convert(@"C:\MyOutput.pdf");
    }  
}

HandoutOutputType(SlidesPerPage, HandoutPrintOrder)

Initializes a new instance of the HandoutOutputType class.

public HandoutOutputType(SlidesPerPage slidesPerPage, HandoutPrintOrder handoutOrder)
Public Sub New (slidesPerPage As SlidesPerPage, handoutOrder As HandoutPrintOrder)

Parameters

slidesPerPage
SlidesPerPage

Instance of SlidesPerPage class.

handoutOrder
HandoutPrintOrder

Instance of HandoutPrintOrder class.

Licensing Info

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

Examples

This example shows how to set OutputType option in PowerPoint Conversion options.
Imports ceTe.DynamicPDF.Conversion
Imports ceTe.DynamicPDF.Conversion.PowerPoint

Module Module1

    Sub Main()
  
        ' Set PowerPoint conversion options
        Dim options As PowerPointConversionOptions = New PowerPointConversionOptions(650.0, 750.0, 75.0)
        options.OutputType = New HandoutOutputType(SlidesPerPage.Two, HandoutOrder.Vertical)

        ' Create new instance of Converter by providing suitable parameters.
        Dim powerPointConverter As PowerPointConverter = New PowerPointConverter("C:\MyDocument.ppt, options)

        ' Call Convert method to start conversion
        powerPointConverter.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(600.0,700.0,75.0);
        options.OutputType = new HandoutOutputType(SlidesPerPage.Two, HandoutOrder.Vertical);

        // Create new instance of Converter by providing suitable parameters.
        PowerPointConverter powerPointConverter = new PowerPointConverter("C:\MyDoucment.ppt, options);

        //Call Convert method to start conversion
        powerPointConverter.Convert(@"C:\MyOutput.pdf");
    }  
}

See Also

HandoutOutputType
ceTe.DynamicPDF.Conversion

In this topic