Interface IAutocompleteRoot
An interface that is implemented by classes which are responsible for generating root for auto-complete.
Namespace: Syncfusion.Windows.Tools.Controls
Assembly: Syncfusion.Tools.Wpf.dll
Syntax
public interface IAutocompleteRoot
Methods
CreateFilteredGhost(IAutocompleteLevel, String, StringMode, Int32)
Creates the filtered ghost.
Declaration
AutocompleteItemCollection CreateFilteredGhost(IAutocompleteLevel level, string filterstring, StringMode mode, int index)
Parameters
Type | Name | Description |
---|---|---|
IAutocompleteLevel | level | The level. |
System.String | filterstring | The filterstring. |
StringMode | mode | The mode. |
System.Int32 | index | The index. |
Returns
Type |
---|
AutocompleteItemCollection |
GetRoot(String)
Gets root for this case.
Declaration
IAutocompleteLevel GetRoot(string rootText)
Parameters
Type | Name | Description |
---|---|---|
System.String | rootText | Current root text. |
Returns
Type | Description |
---|---|
IAutocompleteLevel | Root for this root text. |