ComponentOne ADO.NET DataExtender
C1.C1DataExtender.2 Assembly / C1.C1DataExtender Namespace / ItemListTypeEnum Enumeration

In This Topic
    ItemListTypeEnum Enumeration
    In This Topic
    Defines the possible types of item list for a column style.
    Syntax
    'Declaration
     
    Public Enum ItemListTypeEnum 
       Inherits System.Enum
    public enum ItemListTypeEnum : System.Enum 
    Members
    MemberDescription
    FixedLookupList of items is explicitly defined by the ColumnStyleBase.ItemList property. The list is treated as a lookup, that is, ItemList[i].Value defines a column value, and ItemList[i].DisplayValue defines its display string presentation.
    FixedValuesList of items is explicitly defined by the ColumnStyleBase.ItemList property. The Value property of each item defines both column value and display value. DisplayValue is ignored.
    ForeignKeyColumnStyleBase.ItemList is built dynamically at run time. It contains values and display values from the parent table corresponding to this foreign key column. If this field is not a foreign key, then this value is treated as None.
    NoneThere is no item list for this column.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.C1DataExtender.ItemListTypeEnum

    See Also