[]
        
(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; }
<Browsable(False)>
Public Default Property Item(col As Column) As Object
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; }
<Browsable(False)>
Public Default Property Item(colName As String) As Object
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; }
<Browsable(False)>
Public Default Property Item(colIndex As Integer) As Object
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.