Gets or sets a value indicating whether this instance is visible.
true if this instance is visible; otherwise, false.
Following code demonstrates how to use comments. It shows next features:
[Visual Basic]
excelFile.Worksheets(0).Cells(0, 0).Comment.Text = "comment1"
excelFile.Worksheets(0).Cells(0, 0).Comment.IsVisible = False
[C#]
excelFile.Worksheets[ 0 ].Cells[ 0, 0 ].Comment.Text = "comment1";
excelFile.Worksheets[ 0 ].Cells[ 0, 0 ].Comment.IsVisible = false;
ExcelComment Class | GemBox.Spreadsheet Namespace