Base Combo BoxDropped Down Property
Gets or sets a value indicating whether the combo box is displaying its drop-down portion
Definition
Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
Returns true if the drop-down is currently displayed or false if not. If set to true, the drop down portion is displayed if not already visible and the DropDown event is raised. If set to false, the drop down is hidden if it is currently visible and the CloseUp event is raised. After closing, the SelectionChangeCommitted or SelectionChangeCanceled event is raised depending on whether or not the selected index changed while the drop-down was visible. When using the Simple drop-down style, this always returns true and it cannot be set to false.
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
public bool DroppedDown { get; set; }VB
Public Property DroppedDown As Boolean
Get
SetC++
public:
property bool DroppedDown {
bool get ();
void set (bool value);
}F#
member DroppedDown : bool with get, setProperty Value
BooleanReturns true if the drop-down is currently displayed or false if not. If set to true, the drop down portion is displayed if not already visible and the DropDown event is raised. If set to false, the drop down is hidden if it is currently visible and the CloseUp event is raised. After closing, the SelectionChangeCommitted or SelectionChangeCanceled event is raised depending on whether or not the selected index changed while the drop-down was visible. When using the Simple drop-down style, this always returns true and it cannot be set to false.