Namespace: OfficeIMO.Word
public class WordComment
Inheritance Object → WordComment
ID of a comment
public string Id { get; }
Text content of a comment
public string Text { get; set; }
Initials of a person who created a comment
public string Initials { get; set; }
Full name of a person who created a comment
public string Author { get; set; }
DateTime when the comment was created
public DateTime DateTime { get; set; }
internal static string GetNewId(WordDocument document)
document
WordDocument
internal static string GetNewId(WordDocument document, Comments comments)
document
WordDocument
comments
Comments
internal static Comments GetCommentsPart(WordDocument document)
document
WordDocument
Comments
public static WordComment Create(WordDocument document, string author, string initials, string comment)
document
WordDocument
author
String
initials
String
comment
String
public static List<WordComment> GetAllComments(WordDocument document)
document
WordDocument