AutoSuggestBox.IsSuggestionListOpen Property

Definition

Gets or sets a Boolean value indicating whether the drop-down portion of the AutoSuggestBox is open.

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

void IsSuggestionListOpen(bool value);
public bool IsSuggestionListOpen { get; set; }
var boolean = autoSuggestBox.isSuggestionListOpen;
autoSuggestBox.isSuggestionListOpen = boolean;
Public Property IsSuggestionListOpen As Boolean

Property Value

Boolean

bool

A Boolean value indicating whether the drop-down portion of the AutoSuggestBox is open.

Remarks

Do not set IsSuggestionListOpen in XAML. It's a state property for runtime interactions, and values set in XAML are ignored.

Applies to