C# Class SilverlightFX.UserInterface.AutoCompleteCompletingEventArgs

The event data associated with the AutoComplete behavior's Completing event.
Inheritance: System.EventArgs
ファイルを表示 Open project: nikhilk/silverlightfx Class Usage Examples

Private Properties

Property Type Description
AutoCompleteCompletingEventArgs System

Public Methods

Method Description
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.

Private Methods

Method Description
AutoCompleteCompletingEventArgs ( string prefix ) : System

Method Details

AddServiceParameter() public method

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.
return void

SetCompletionItems() public method

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.
return void

SuppressDropDown() public method

Suppresses the AutoComplete dropdown for this particular prefix.
public SuppressDropDown ( ) : void
return void