Table of Contents

Class Comment

Namespace
FileFormat.Slides
Assembly
FileFormat.Slides.dll

Represents a comment within the system.

public class Comment
Inheritance
Comment
Inherited Members

Constructors

Comment()

Initializes a new instance of the Comment class.

public Comment()

Properties

AuthorId

Gets or sets the ID of the comment's author.

public int AuthorId { get; set; }

Property Value

int

CommentIndex

Gets or sets the index of the comment.

public int CommentIndex { get; set; }

Property Value

int

Facade

Gets or sets the CommentFacade object.

public CommentFacade Facade { get; set; }

Property Value

CommentFacade

InsertedAt

Gets or sets the time when the comment was inserted.

public DateTime InsertedAt { get; set; }

Property Value

DateTime

Text

Gets or sets the content of the comment.

public string Text { get; set; }

Property Value

string

X

Gets or sets the X-coordinate of the comment.

public long X { get; set; }

Property Value

long

Y

Gets or sets the Y-coordinate of the comment.

public long Y { get; set; }

Property Value

long

Methods

Remove()

Method to remove the comment.

public void Remove()