Class HandoutViewOptions
- Namespace
- Slidize
- Assembly
- Slidize.Plugins.dll
Represents the handout presentation view mode for export.
public sealed class HandoutViewOptions : ISlidesViewOptions
- Inheritance
-
HandoutViewOptions
- Implements
- Inherited Members
Examples
The following example shows how to convert PowerPoint document to PDF in Handout view.
[C#]
PdfConverterOptions options = new PdfConverterOptions
{
SlidesViewOptions = new HandoutViewOptions
{
Handout = HandoutViewType.Handouts4Horizontal,
PrintSlideNumbers = false,
PrintFrameSlide = false,
PrintComments = true
}
};
PresentationToPdfConverter.Process("pres.pptx", "pres.pdf", options);
Constructors
HandoutViewOptions()
Initializes a new instance of the HandoutViewOptions class.
public HandoutViewOptions()
Properties
Handout
Specifies how many slides and in what sequence will be placed on the page HandoutViewType.
public HandoutViewType Handout { get; set; }
Property Value
Remarks
Default value is Handouts6Horizontal.
PrintComments
Specifies whether or not to display comments on slides
public bool PrintComments { get; set; }
Property Value
Remarks
Default value is false.
PrintFrameSlide
Specifies whether to draw frames around the displayed slides or not.
public bool PrintFrameSlide { get; set; }
Property Value
Remarks
Default value is true.
PrintSlideNumbers
Specifies whether or not to print the displayed slide numbers.
public bool PrintSlideNumbers { get; set; }
Property Value
Remarks
Default value is true.