[]
Gets the comment associated with the table object.
This property returns the text previously assigned through Comment for the current table.
string Comment { get; set; }
Property Comment As String
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;