[]
        
(Showing Draft Content)

C1.WPF.FlexGrid.GridPanel.Item

this Property

this[int, Column]

Gets or sets the value of a specific cell.

Declaration
public object this[int row, Column col] { get; set; }
Public Default Property Item(row As Integer, col As Column) As Object
Parameters
Type Name Description
int row

Index of the row that contains the cell.

Column col

Column that contains the cell.

Property Value
Type Description
object

The value of the cell.

this[int, int]

Gets or sets the value of a specific cell.

Declaration
public object this[int row, int col] { get; set; }
Public Default Property Item(row As Integer, col As Integer) As Object
Parameters
Type Name Description
int row

Index of the row that contains the cell.

int col

Index of the column that contains the cell.

Property Value
Type Description
object

The value of the cell.

this[int, string]

Gets or sets the value of a specific cell.

Declaration
public object this[int row, string colName] { get; set; }
Public Default Property Item(row As Integer, colName As String) As Object
Parameters
Type Name Description
int row

Index of the row that contains the cell.

string colName

ColumnName of the column that contains the cell.

Property Value
Type Description
object

The value of the cell.