SearchForVirtualItemEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the SearchForVirtualItem event.
- C#
- VB.NET
public class SearchForVirtualItemEventArgs : EventArgs
Public Class SearchForVirtualItemEventArgs
Inherits EventArgs
Constructors
SearchForVirtualItemEventArgs(isPrefixSearch, includeSubItemsInSearch, text, startIndex)
Initializes a new instance of the SearchForVirtualItemEventArgs class.
| Name | Type | Description |
|---|---|---|
| isPrefixSearch | Boolean | A value indicating whether the search is a prefix search. |
| includeSubItemsInSearch | Boolean | A value indicating whether to include sub items of list items in the search. |
| text | String | The text of the item to search for. |
| startIndex | Int32 | The index of the ListViewItem at which to start the search. |
Properties
IncludeSubItemsInSearch
Boolean: Returns a value indicating whether the search should include sub items of list items.
Index
Int32: Returns or sets the index of the ListViewItem found in the ListView .
IsPrefixSearch
Boolean: Returns a value indicating whether the search should return an item if its text starts with the search text.
StartIndex
Int32: Returns the index of the ListViewItem where the search starts.
Text
String: Returns the text used to find an item in the ListView control.
Used By
| Name | Description |
|---|---|
| SearchForVirtualItemEventHandler | Represents the method that will handle the SearchForVirtualItem event of a ListView. |