Interface IAutocompleteLevel
An interface that is implemented by classes which are responsible for generating levels for auto-complete.
Inherited Members
Namespace: Syncfusion.Windows.Tools.Controls
Assembly: Syncfusion.Tools.Wpf.dll
Syntax
public interface IAutocompleteLevel : IAutocompleteItem
Properties
IsItemsLoaded
Gets a value indicating whether true if items are already loaded, otherwise, false. This property indicates whether the level items were loaded.
Declaration
bool IsItemsLoaded { get; }
Property Value
Type |
---|
System.Boolean |
Items
Gets items for this level.This property contains level's items.
Declaration
AutocompleteItemCollection Items { get; }
Property Value
Type |
---|
AutocompleteItemCollection |
Parent
Gets parent for this level.This property contains item's parent.
Declaration
IAutocompleteLevel Parent { get; }
Property Value
Type |
---|
IAutocompleteLevel |
Splitter
Gets splitter for this level.This property contains level's splitter.
Declaration
string Splitter { get; }
Property Value
Type |
---|
System.String |
Methods
GetFullPath()
This method gets full way to this level.
Declaration
string GetFullPath()
Returns
Type | Description |
---|---|
System.String | Full way to this level including all parents. |
LoadItems()
This method synchronously loads items.
Declaration
void LoadItems()
LoadItemsAsync()
This method loads async items, runs parallel thread.
Declaration
void LoadItemsAsync()
Events
ItemsLoaded
Event that occurs when level's items were loaded. Invokes when items async loading completes.
Declaration
event EventHandler ItemsLoaded
Event Type
Type |
---|
System.EventHandler |