FilteredListFactory Delegate

Delegate type of auto suggestion list filter.

Definition

Namespace: BeeMobile.RoundComboBox
Assembly: BeeMobile.RoundComboBox.NET48 (in BeeMobile.RoundComboBox.NET48.dll) Version: 4.8.2.24
C#
public delegate IList FilteredListFactory(
	Object originalDataSource,
	string textBoxText,
	ref string currentSearchText
)

Parameters

originalDataSource  Object
The unfiltered original data source object.
textBoxText  String
The text in the text box.
currentSearchText  String
reference to the most recent text for which a search thread is started. Useful for stopping the filtering, when it's not the same as textBoxText.

Return Value

IList
IList type colelction of filtered items.

See Also