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

In This Topic
    Item(String) Property
    In This Topic
    Gets or sets the value stored in the column with the specified name.
    Syntax
    'Declaration
     
    Public Overloads Property Item( _
       ByVal columnName As System.String _
    ) As System.Object
    public System.object Item( 
       System.string columnName
    ) {get; set;}

    Parameters

    columnName
    The name 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