C# Класс SilverlightFX.UserInterface.AutoCompleteCompletingEventArgs

The event data associated with the AutoComplete behavior's Completing event.
Наследование: System.EventArgs
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание
AutoCompleteCompletingEventArgs System

Открытые методы

Метод Описание
AddServiceParameter ( string name, string value ) : void

Allows adding a query string parameter to the web request that will be invoked to get a list of completion items in addition to the prefix itself.

SetCompletionItems ( IList items ) : void

Allows providing a set of completion items to be used instead of invoking a web request to fetch a list. This enables using autocompletion with computed values.

SuppressDropDown ( ) : void

Suppresses the AutoComplete dropdown for this particular prefix.

Приватные методы

Метод Описание
AutoCompleteCompletingEventArgs ( string prefix ) : System

Описание методов

AddServiceParameter() публичный Метод

Allows adding a query string parameter to the web request that will be invoked to get a list of completion items in addition to the prefix itself.
public AddServiceParameter ( string name, string value ) : void
name string The name of the query string parameter.
value string The value of the query string parameter.
Результат void

SetCompletionItems() публичный Метод

Allows providing a set of completion items to be used instead of invoking a web request to fetch a list. This enables using autocompletion with computed values.
public SetCompletionItems ( IList items ) : void
items IList The alternate set of items to use.
Результат void

SuppressDropDown() публичный Метод

Suppresses the AutoComplete dropdown for this particular prefix.
public SuppressDropDown ( ) : void
Результат void