Class ThreadedComment

ThreadedComment class

Represents the threaded comment.

public class ThreadedComment

Properties

NameDescription
Author { get; set; }Gets the author of the comment.
Column { get; }Gets the column index of the comment.
CreatedTime { get; set; }Gets and sets the created time of this threaded comment.
Notes { get; set; }Gets and sets the text of the comment.
Row { get; }Gets the row index of the comment.

Examples

// Called: ThreadedComment tc = workbook.Worksheets[0].Comments[0].ThreadedComments[0];
[Test]
        public void Type_ThreadedComment()
        {
            Workbook workbook = new Workbook(Constants.sourcePath + "PYTHONJAVA-68.xlsx");
            ThreadedComment tc = workbook.Worksheets[0].Comments[0].ThreadedComments[0];
            Assert.AreEqual(DateTime.Now.Month, tc.CreatedTime.Month);
            workbook.Save(Constants.destPath + "PYTHONJAVA-68.xlsx");
        }

See Also