[]
        
(Showing Draft Content)

C1.WPF.FlexGrid.C1FlexGrid.Item

this Property

this[int, Column]

Gets or sets the value of a specific cell.

Declaration
public virtual object this[int row, Column col] { get; set; }
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; }
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; }
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.