Link Search Menu Expand Document

SSpread.CellNote Property

Comment on entire spreadsheets and cells in rows, columns, cells, and cell blocks.

A red comment mark is displayed in the upper right corner of the cell where the comment is set, and the comment set is popped up by hovering the mouse over it.

Set a blank string to remove the comment.

Before setting this property, use the Col, Row properties, and so on to specify what to do.

The initial value is a blank string.
Added since Ver.5.0.2

Example of usage

Col = 2;
Row = 3;
CellNote = "Comment";
 
Col = 2;
Row = 3;
print(CellNote, "\n");