ComboBoxTextSubmittedEventArgs.Handled Property

Definition

Gets or sets whether the TextSubmitted event was handled or not. If true, the framework will not automatically update the selected item of the ComboBox to the new value.

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

void Handled(bool value);
public bool Handled { get; set; }
var boolean = comboBoxTextSubmittedEventArgs.handled;
comboBoxTextSubmittedEventArgs.handled = boolean;
Public Property Handled As Boolean

Property Value

Boolean

bool

Applies to