Class ComboBoxInputSubmittedEventArgs
Provides event data for the InputSubmitted event.
Inheritance
Namespace: Syncfusion.UI.Xaml.Editors
Assembly: Syncfusion.Editors.WinUI.dll
Syntax
public class ComboBoxInputSubmittedEventArgs : EventArgs
Constructors
ComboBoxInputSubmittedEventArgs()
Declaration
public ComboBoxInputSubmittedEventArgs()
Properties
Handled
Gets or sets a value indicating whether the InputSubmitted event was handled or not.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The default value is |
Remarks
If true, the framework will not automatically update the selected item or selected items of the SfComboBox to the new value.
Item
Gets or sets the item to be added to SelectedItems property or set to SelectedItem when user submit the invalid input.
Declaration
public object Item { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The default value is |
Remarks
Add the item to selected item(s) or set to selected item which gets assigned. If no item is assigned, then In single selection, entered text gets assigned to selected item. In multiple selection, no text will be added to selected items.
Text
Gets the text entered in ComboBox. When the entered text does not match with suggestions, the given string is assigned as selected item in single selection mode, but in multiple selection the string gets ignored.
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
System.String | The text entered in ComboBox. |