[]
Gets user data associated with a cell.
public virtual object GetUserData(int row, int col)
Type | Name | Description |
---|---|---|
int | row | Row index. |
int | col | Column index. |
Type | Description |
---|---|
object | Object associated with 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.
Gets user data associated with a cell.
public virtual object GetUserData(int row, string colName)
Type | Name | Description |
---|---|---|
int | row | Row index. |
string | colName | Column name. |
Type | Description |
---|---|
object | Object associated with 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.