PrintComments

Propriété HandoutLayoutingOptions.PrintComments

Spécifie s’il faut ou non afficher les commentaires sur les diapositives

public bool PrintComments { get; set; }

Remarques

La valeur par défaut est false.

Exemples

Exemple :

[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");
}

Voir aussi