Link Search Menu Expand Document

SSpread.GetRowItemData Method

Explanation Gets the individual numeric data set in the specified row.

Use the SetRowItemData method to set individual numeric data for a row.
This numeric data does not affect the behavior of the spreadsheet. It can be used for any purpose.
Call format GetRowItemData(row)
Return value Numerical data
0 is returned for rows that are not set.
Arguments row Row number
Exception None
Example of use
    SetRowItemData(1, 2001);
    SetRowItemData(2, 2002);
    SetRowItemData(3, 2003);
    Function OnClicked(e) {
        MessageBox(str(GetRowItemData(e.Row)) + " is clicked");
    }
    
Related item CellTag property
GetColItemData, SetColItemData, SetRowItemData methods