Table of Contents

Class OdfCommentInfo

Namespace
OdfKit.Text
Assembly
OdfKit.dll

Represents summary information for a comment in a text document. 表示文字文件中一則註解的摘要資訊。

public sealed class OdfCommentInfo
Inheritance
OdfCommentInfo
Inherited Members

Constructors

OdfCommentInfo(string, string, string, DateTime, int)

Represents summary information for a comment in a text document. 表示文字文件中一則註解的摘要資訊。

public OdfCommentInfo(string name, string author, string text, DateTime date, int replyCount)

Parameters

name string

The comment identifier. / 註解識別碼。

author string

The author. / 作者。

text string

The comment body text. / 註解內文。

date DateTime

The comment time (UTC). / 註解時間(UTC)。

replyCount int

The reply count. / 回覆數量。

Properties

Author

Gets the comment author. 取得作者。

public string Author { get; }

Property Value

string

Date

Gets the comment time (UTC). 取得註解時間(UTC)。

public DateTime Date { get; }

Property Value

DateTime

Name

Gets the comment identifier. 取得註解識別碼。

public string Name { get; }

Property Value

string

ReplyCount

Gets the reply count. 取得回覆數量。

public int ReplyCount { get; }

Property Value

int

Text

Gets the comment body text. 取得註解內文。

public string Text { get; }

Property Value

string