ComboBox.IsDropDownOpen Property

Definition

Gets or sets a value that indicates whether the drop-down portion of the ComboBox is currently open.

public:
 property bool IsDropDownOpen { bool get(); void set(bool value); };
bool IsDropDownOpen();

void IsDropDownOpen(bool value);
public bool IsDropDownOpen { get; set; }
var boolean = comboBox.isDropDownOpen;
comboBox.isDropDownOpen = boolean;
Public Property IsDropDownOpen As Boolean
<ComboBox IsDropDownOpen="bool"/>

Property Value

Boolean

bool

True if the drop-down portion is open; otherwise, false. The default is false.

Applies to