Class ComboBoxSearchInfo
Represents information for the SearchBehavior in SfComboBox control.
Inheritance
System.Object
ComboBoxSearchInfo
Namespace: Syncfusion.UI.Xaml.Editors
Assembly: Syncfusion.Editors.WinUI.dll
Syntax
public class ComboBoxSearchInfo : Object
Constructors
ComboBoxSearchInfo()
Declaration
public ComboBoxSearchInfo()
Properties
FilteredItems
Collection of the items returned by the FilterBehavior.
Declaration
public ReadOnlyCollection<object> FilteredItems { get; }
Property Value
Type |
---|
System.Collections.ObjectModel.ReadOnlyCollection<System.Object> |
Text
Gets the text entered in ComboBox. Using this text highlighted index is assigned, where index is calculated for the filtered items which gets displayed in the drop down list.
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
System.String | The text entered in ComboBox. |