Link Search Menu Expand Document

SSpread.GetColItemData Method

Explanation Gets the individual numeric data set for the specified column.

Use the SetColItemData method to set individual numeric data for a column.
This numeric data does not affect the behavior of the spreadsheet. It can be used for any purpose.
Call format GetColItemData(col)
Return value Numerical data
0 is returned for columns that are not set.
Arguments col Column index
Exception None
Example of use
    SetColItemData(1, 1001);
    SetColItemData(2, 1002);
    SetColItemData(3, 1003);
    
    Function OnClicked(e) {
        MessageBox(str(GetColItemData(e.Col)) + " is clicked");
    }
    
Related item CellTag property
GetRowItemData, SetColItemData, GetRowItemData methods