[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITable.Comment

Comment Property

Comment

Gets the comment associated with the table object.

This property returns the text previously assigned through Comment for the current table.

Declaration
string Comment { get; set; }
Property Comment As String
Examples
worksheet.Range["A1:B3"].Value = new object[,] {
    {"Name", "Value"},
    {"Test", 100},
    {"Total", 200}
};
ITable table = worksheet.Tables.Add(worksheet.Range["A1:B3"], true);
table.Comment = "Monthly summary table";
string comment = table.Comment;