Table of Contents

Class ConverterOptions

Namespace
Slidize
Assembly
Slidize.Plugins.dll

Provides options that control how a presentation/slide is rendered.

public class ConverterOptions
Inheritance
ConverterOptions
Derived
Inherited Members

Examples

[C#]
ConverterOptions options = new ImageConverterOptions
{
    DefaultRegularFont = "Calibri",
    SlidesViewOptions = new HandoutViewOptions
    {
        Handout = HandoutViewType.Handouts4Horizontal
    }
};
PresentationToPngConverter.Process("pres.pptx", "pres.png", options);

Constructors

ConverterOptions()

public ConverterOptions()

Properties

DefaultRegularFont

Returns or sets font used in case source font is not found. Read-write string.

public string DefaultRegularFont { get; set; }

Property Value

string

SlidesViewOptions

Gets or sets the mode in which slides are placed on the page when converting a presentation. Read-write ISlidesViewOptions.

public ISlidesViewOptions SlidesViewOptions { get; set; }

Property Value

ISlidesViewOptions