[]
Assigns user data to a cell.
public virtual void SetUserData(int row, int col, object data)
Type | Name | Description |
---|---|---|
int | row | Row index. |
int | col | Column index. |
object | data | User data to assign to the cell. |
The user data is not used internally by the grid. It is reserved for additional data that you may want to associate with a cell.
Assigns user data to a cell.
public virtual void SetUserData(int row, string colName, object data)
Type | Name | Description |
---|---|---|
int | row | Row index. |
string | colName | Column name. |
object | data | User data to assign to the cell. |
The user data is not used internally by the grid. It is reserved for additional data that you may want to associate with a cell.