ComponentOne MultiSelect for WinForms
C1.Win.C1Input Namespace / DropDownFormOptionsFlags Enumeration

In This Topic
    DropDownFormOptionsFlags Enumeration
    In This Topic
    Used by DropDownForm.Options property.
    Syntax
    'Declaration
     
    
    Public Enum DropDownFormOptionsFlags 
       Inherits System.Enum
    public enum DropDownFormOptionsFlags : System.Enum 
    Members
    MemberDescription
    AlwaysPostChangesIf this flag is set, the changes to the control Value can only be cancelled explicitly, with Esc key or using the CloseDropDown method, and implicit cancellation (when the form is closed because it loses focus) is disabled.
    AutoResizeIf set, the dropdown form width is automatically adjusted to the width of the owner control before the form is shown.
    FixedHeightThe end users are not allowed to change the height of the dropdown form resizing it.
    FixedSize= FixedWidth + FixedHeight
    FixedWidthThe end users are not allowed to change the width of the dropdown form resizing it.
    FocusableIndicates that DropDownForm can contain focus.
    NoCancelOnEscapeIf this flag is set, pressing the Esc key does not close the form.
    NoneIndicates that none of the options are set.
    NoPostOnEnterIf this flag is set, pressing the Enter key does not close the form.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.Win.C1Input.DropDownFormOptionsFlags

    See Also