ComponentOne ADO.NET DataExtender
C1.C1DataExtender.2 Assembly / C1.C1DataExtender Namespace / RowDisplayBase Class / RowDisplayColumns Property

In This Topic
    RowDisplayColumns Property
    In This Topic
    Defines a collection of column names whose values constitute a row representation string.
    Syntax
    'Declaration
     
    Public ReadOnly Property RowDisplayColumns As RowDisplayColumnCollection
    public RowDisplayColumnCollection RowDisplayColumns {get;}
    Remarks
    If RowDisplayFormat property value is empty then row display string is constructed as specified column values separated by space, in order as they go in this collection. If this collection is empty then a column representing a row is determined automatically. Presence of a column name in the collection is synchronazed with the DataColumnExtender.RowDisplayValue property value of the corresponding DataColumnExtender object. If column name is in the collection then DataColumnExtender.RowDisplayValue is true, if not in the collection then false. The change can be performed by adding/removing the column name from the collection or by changing the DataColumnExtender.RowDisplayValue property value.
    See Also