Handout

HandoutLayoutingOptions.Handout property

Specifies how many slides and in what sequence will be placed on the page HandoutType.

public HandoutType Handout { get; set; }

Remarks

Default value is HandoutType.Handouts6Horizontal.

Examples

Example:

[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
    RenderingOptions options = new RenderingOptions
    {
        SlidesLayoutOptions = new HandoutLayoutingOptions
        {
            Handout = HandoutType.Handouts4Horizontal
        }
    };
    
    pres.Slides[0].GetThumbnail(options, new Size(1920, 1080)).Save("pres-handout.png");
}

See Also