PrintFrameSlide
HandoutLayoutingOptions.PrintFrameSlide property
Specifies whether to draw frames around the displayed slides or not.
public bool PrintFrameSlide { 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,
            PrintFrameSlide = false
        }
    };
    
    pres.Slides[0].GetThumbnail(options, new Size(1920, 1080)).Save("pres-handout.png");
}
See Also
- class HandoutLayoutingOptions
- namespace Aspose.Slides.Export
- assembly Aspose.Slides