Class AutoCompleteSearchInfo
Represents information for the SearchBehavior in SfAutoComplete control.
Inheritance
System.Object
AutoCompleteSearchInfo
Namespace: Syncfusion.UI.Xaml.Editors
Assembly: Syncfusion.Editors.WinUI.dll
Syntax
public class AutoCompleteSearchInfo : Object
Constructors
AutoCompleteSearchInfo()
Declaration
public AutoCompleteSearchInfo()
Properties
FilteredItems
Gets the suggested items which gets filtered in the drop down list.
Declaration
public ReadOnlyCollection<object> FilteredItems { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ReadOnlyCollection<System.Object> | The suggested items in the drop down list. |
Text
Gets the text entered in AutoComplete. 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 AutoComplete. |