PrintComments

HandoutLayoutingOptions.PrintComments property

Specifies whether or not to display comments on slides

public bool PrintComments { get; set; }

Remarks

Default value is false.

Examples

Example:

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

See Also