ComponentOne ADO.NET DataExtender
C1.C1DataExtender.2 Assembly / C1.C1DataExtender Namespace / ColumnStyleBase Class / ItemList Property

In This Topic
    ItemList Property (ColumnStyleBase)
    In This Topic
    Defines a collection of items for an explicitly defined item list.
    Syntax
    'Declaration
     
    Public ReadOnly Property ItemList As LookupItemList
    public LookupItemList ItemList {get;}
    Remarks
    ItemList is used to define a list of items when the ItemListType property is set to ItemListTypeEnum.FixedValues or ItemListTypeEnum.FixedLookup value.

    When ItemListType is set to ItemListTypeEnum.FixedValues only the LookupItem.Value property is used, which defines a possible value that can be entered in a column by selecting it from the list.

    If ItemListType value is ItemListTypeEnum.FixedLookup then list represents a lookup, where LookupItem.Value represents a key that is matched against a column value, and LookupItem.DisplayValue defines a string that will be displayed instead of an actual column value.

    See Also