New to Telerik UI for WPFStart a free 30-day trial

Represents auto-complete provider that handles the Append behavior.

Definition

Constructors

Initializes a new instance of the AppendProvider class.

C#
public AppendProvider(QueryableCollectionView collectionView, SearchStateManager searchStateManager)
Parameters:collectionViewQueryableCollectionViewsearchStateManagerSearchStateManager

Initializes a new instance of the AppendProvider class.

C#
public AppendProvider(QueryableCollectionView collectionView)
Parameters:collectionViewQueryableCollectionView

Properties

Gets the auto-complete mode.

C#
protected override SearchAutoCompleteMode AutoCompleteMode { get; }

Overrides: SuggestProvider.AutoCompleteMode

Methods

Returns the current item.

C#
protected override object GetCurrentItem()
Returns:

object

Overrides: SuggestProvider.GetCurrentItem()

Updates the search logic with the new search text value.

C#
protected override void HandleSearchTextChanged(string newSearchText)
Parameters:newSearchTextstring

Overrides: SuggestProvider.HandleSearchTextChanged(string)

Initializes the associated collection view instance.

C#
protected override void InitializeCollectionView(QueryableCollectionView collectionView)
Parameters:collectionViewQueryableCollectionView

Overrides: SuggestProvider.InitializeCollectionView(QueryableCollectionView)

Moves CollectionView.CurrentItem to the first item.

C#
public override void MoveCurrentToFirst()

Overrides: SuggestProvider.MoveCurrentToFirst()

Moves CollectionView.CurrentItem to the last item.

C#
public override void MoveCurrentToLast()

Overrides: SuggestProvider.MoveCurrentToLast()

Moves CollectionView.CurrentItem to the next available.

C#
public override void MoveCurrentToNext()

Overrides: SuggestProvider.MoveCurrentToNext()

Moves CollectionView.CurrentItem to the previous available.

C#
public override void MoveCurrentToPrevious()

Overrides: SuggestProvider.MoveCurrentToPrevious()

Sets the current item.

C#
protected override void SetCurrentItem(object item)
Parameters:itemobject

Overrides: SuggestProvider.SetCurrentItem(object)