Table of Contents

Class NotesCommentsViewOptions

Namespace
Slidize
Assembly
Slidize.Plugins.dll

Provides options that control the view of notes and comments in exported document.

public sealed class NotesCommentsViewOptions : ISlidesViewOptions
Inheritance
NotesCommentsViewOptions
Implements
Inherited Members

Examples

The following example shows how to convert PowerPoint document to PDF format in Notes and Comments view.

[C#]
PdfConverterOptions options = new PdfConverterOptions
{
    SlidesViewOptions = new NotesCommentsViewOptions
    {
        NotesPosition = NotesPositions.BottomTruncated,
        CommentsPosition = CommentsPositions.Right
    }
};
PresentationToPdfConverter.Process("pres.pptx", "pres.pdf", options);

Constructors

NotesCommentsViewOptions()

Initializes a new instance of the NotesCommentsViewOptions class.

public NotesCommentsViewOptions()

Properties

CommentsAreaColor

Returns or sets the color of comments area (Applies only if comments are displayed on the right).

public Color CommentsAreaColor { get; set; }

Property Value

Color

Remarks

Default value is Color.SkyBlue.

CommentsAreaWidth

Returns or sets the width of the comment output area in pixels (Applies only if comments are displayed on the right).

public int CommentsAreaWidth { get; set; }

Property Value

int

Remarks

Minimal and default value is 150.

CommentsPosition

Returns or sets the position of the comments on the page.

public CommentsPositions CommentsPosition { get; set; }

Property Value

CommentsPositions

Remarks

Default value is None.

NotesPosition

Returns or sets the position of the notes on the page.

public NotesPositions NotesPosition { get; set; }

Property Value

NotesPositions

Remarks

Default value is None.

ShowCommentsByNoAuthor

Returns or sets the visibility of comments that do not have an author. If true then comments will be displayed. (Applies only if comments are displayed).

public bool ShowCommentsByNoAuthor { get; set; }

Property Value

bool

Remarks

Default value is false.