SlidesLayoutOptions

IPdfOptions.SlidesLayoutOptions property

Gets or sets the mode in which slides are placed on the page when exporting a presentation ISlidesLayoutOptions.

public ISlidesLayoutOptions SlidesLayoutOptions { get; set; }

Examples

Example:

[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
    PdfOptions options = new PdfOptions
    {
        SlidesLayoutOptions = new HandoutLayoutingOptions
        {
            Handout = HandoutType.Handouts4Horizontal
        }
    };
    
    pres.Save("pres.pdf", SaveFormat.Pdf, options);
}

See Also