ComponentOne ADO.NET DataExtender
C1.C1DataExtender.2 Assembly / C1.C1DataExtender Namespace / C1ViewRow Class / Item Property / Item(Int32) Property
The index of the C1ViewColumn that stores the value.

In This Topic
    Item(Int32) Property
    In This Topic
    Gets or sets the value stored in the column with the specified index.
    Syntax
    'Declaration
     
    Public Overloads Property Item( _
       ByVal columnIndex As System.Integer _
    ) As System.Object
    public System.object Item( 
       System.int columnIndex
    ) {get; set;}

    Parameters

    columnIndex
    The index of the C1ViewColumn that stores the value.

    Property Value

    The column value.
    Remarks
    If row is not in the editing state when column value is being assigned, that is the BeginEdit method was not called for this row, then BeginEdit method is called automatically, column value is assigned, after that the EndEdit method is called.
    See Also