Skip to main content
Version: 4.1

SearchForVirtualItemEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Provides data for the SearchForVirtualItem event.

public class SearchForVirtualItemEventArgs : EventArgs

Constructors

Instance member SearchForVirtualItemEventArgs(isPrefixSearch, includeSubItemsInSearch, text, startIndex)

Initializes a new instance of the SearchForVirtualItemEventArgs class.

NameTypeDescription
isPrefixSearchBooleanA value indicating whether the search is a prefix search.
includeSubItemsInSearchBooleanA value indicating whether to include sub items of list items in the search.
textStringThe text of the item to search for.
startIndexInt32The index of the ListViewItem at which to start the search.

Properties

Instance member IncludeSubItemsInSearch

Boolean: Returns a value indicating whether the search should include sub items of list items.

Instance member Index

Int32: Returns or sets the index of the ListViewItem found in the ListView .

Instance member IsPrefixSearch

Boolean: Returns a value indicating whether the search should return an item if its text starts with the search text.

Instance member StartIndex

Int32: Returns the index of the ListViewItem where the search starts.

Instance member Text

String: Returns the text used to find an item in the ListView control.

Used By

NameDescription
SearchForVirtualItemEventHandlerRepresents the method that will handle the SearchForVirtualItem event of a ListView.