SSpread.CellTag Property
Sets user-defined tags for the specified cells, columns, and rows. This property has no effect on the behavior of the spreadsheet. It can be used for any purpose.
Before setting this property, use the Col, Row properties to specify the cells, rows, and columns of interest. (The cell block cannot be specified.) The initial value is a blank character string.
Similar features include the SetColItemData and SetRowItemData methods. These can be set to any numerical data by specifying the row number and column number.
Example of usage
Col = 2;
Row = 3;
CellTag = "sample";
Col = 2;
Row = 3;
print(CellTag, "\n");
Related Items
GetColItemData, GetRowItemData, SetColItemData, SetRowItemData method