Class OdfCommentInfo
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
namestringThe comment identifier. / 註解識別碼。
authorstringThe author. / 作者。
textstringThe comment body text. / 註解內文。
dateDateTimeThe comment time (UTC). / 註解時間(UTC)。
replyCountintThe reply count. / 回覆數量。
Properties
Author
Gets the comment author. 取得作者。
public string Author { get; }
Property Value
Date
Gets the comment time (UTC). 取得註解時間(UTC)。
public DateTime Date { get; }
Property Value
Name
Gets the comment identifier. 取得註解識別碼。
public string Name { get; }
Property Value
ReplyCount
Gets the reply count. 取得回覆數量。
public int ReplyCount { get; }
Property Value
Text
Gets the comment body text. 取得註解內文。
public string Text { get; }