Link Search Menu Expand Document

SSpread.SetRowItemData Method

Explanation Set individual numerical data for each specified row. Use the GetRowItemData method to get 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 SetRowItemData(row, value)
Return value None
Arguments row Row number
value Numerical data
Exception EXT-1 The argument of SetRowItemData is invalid
EXT-28 An error occurred in the SetRowItemData method
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, GetRowItemData, SetColItemData methods