ComponentOne FlexPivot for WinForms
C1.Win.C1FlexGrid.4.8 Assembly / C1.Win.C1FlexGrid Namespace / CellStyle Class / ComboList Property

In This Topic
    ComboList Property (CellStyle)
    In This Topic
    Gets or sets a pipe-delimited list of valid values.
    Syntax
    'Declaration
     
    Public Property ComboList As String
    public string ComboList {get; set;}
    Remarks

    If the cell is editable, this list of values is used to populate the drop-down System.Windows.Forms.ComboBox used to edit the cell.

    If the list starts with a pipe character, then the list is not exclusive and the user may type values that are not on the list.

    If the list contains three periods ("..."), then a button is displayed in the cell. When the user presses the button, the grid fires the CellButtonClick event.

    If the list contains a pipe followed by three periods ("|..."), then a button is displayed in the cell as before, and the user may also type into the cell.

    See also the DataMap property for an alternate way of specifying valid values for a cell.

    See Also