[]
        
(Showing Draft Content)

C1.WPF.FlexGrid.Row.Item

this Property

this[Column]

Gets or sets the data stored in this row at a specific column.

Declaration
[Browsable(false)]
public object this[Column col] { get; set; }
Parameters
Type Name Description
Column col

Column that contains the data.

Property Value
Type Description
object

The data stored in this row at a specific column.

this[string]

Gets or sets the data stored in this row at a specific column.

Declaration
[Browsable(false)]
public object this[string colName] { get; set; }
Parameters
Type Name Description
string colName

Name of the Column that contains the data.

Property Value
Type Description
object

The data stored in this row at a specific column.

Remarks

Columns are identified by their ColumnName property.

this[int]

Gets or sets the data stored in this row at a specific column.

Declaration
[Browsable(false)]
public object this[int colIndex] { get; set; }
Parameters
Type Name Description
int colIndex

Index of the Column that contains the data.

Property Value
Type Description
object

The data stored in this row at a specific column.