'Declaration Public Overloads Property Item( _ ByVal row As Integer, _ ByVal colName As String _ ) As Object
'Declaration
Public Overloads Property Item( _ ByVal row As Integer, _ ByVal colName As String _ ) As Object
public object Item( int row, string colName ) {get; set;}
This is one of the indexers you can use to get or set the data stored in grid cells.
You can index cells using the row and column indices or using the row index and column name.
C1FlexGrid Class C1FlexGrid Members Overload List