WPF

Code Examples Upgrade Guide User Guide Demos Support Forums Download
  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Interface IAutocompleteLevel

    Show / Hide Table of Contents

    Interface IAutocompleteLevel

    An interface that is implemented by classes which are responsible for generating levels for auto-complete.

    Inherited Members
    IAutocompleteItem.Text
    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 Description
    System.Boolean

    Items

    Gets items for this level.This property contains level's items.

    Declaration
    AutocompleteItemCollection Items { get; }
    Property Value
    Type Description
    AutocompleteItemCollection

    Parent

    Gets parent for this level.This property contains item's parent.

    Declaration
    IAutocompleteLevel Parent { get; }
    Property Value
    Type Description
    IAutocompleteLevel

    Splitter

    Gets splitter for this level.This property contains level's splitter.

    Declaration
    string Splitter { get; }
    Property Value
    Type Description
    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 Description
    System.EventHandler
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved