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

In This Topic
    Item(C1ViewColumn) Property
    In This Topic
    Gets or sets the value stored in the specified C1ViewColumn of this row.
    Syntax
    'Declaration
     
    Public Overloads Property Item( _
       ByVal column As C1ViewColumn _
    ) As System.Object
    public System.object Item( 
       C1ViewColumn column
    ) {get; set;}

    Parameters

    column
    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