[]
Represents a cell comment.
public interface IComment
Gets the anchor cell of the comment.
IRange AnchorCell { get; }
Gets the author of the comment.
string Author { get; }
Returns the IShape object that represents the shape attached to the specified comment.
IShape Shape { get; }
Gets or sets the comment text.
string Text { get; set; }
Determines whether the object is visible.
bool Visible { get; set; }
Deletes the object.
void Delete()
Generates the comment from the JSON string.
void FromJson(string json)
json
stringthe JSON string that contains comment info.
Returns the IComment object that represents the next comment.
IComment Next()
Returns the IComment object that represents the previous comment.
IComment Previous()
The previous comment object.
Generates a JSON string from the comment.
string ToJson()
the JSON string that contains comment info.