PrintSlideNumbers

HandoutLayoutingOptions.PrintSlideNumbers property

Specifies whether or not to print the displayed slide numbers.

public bool PrintSlideNumbers { get; set; }

Remarks

Default value is true.

Examples

Example:

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

See Also