﻿<?xml version="1.0" encoding="utf-8"?><Type Name="SearchForVirtualItemEventArgs" FullName="System.Windows.Forms.SearchForVirtualItemEventArgs"><TypeSignature Language="C#" Value="public class SearchForVirtualItemEventArgs : EventArgs" /><AssemblyInfo><AssemblyName>System.Windows.Forms</AssemblyName><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><Base><BaseTypeName>System.EventArgs</BaseTypeName></Base><Interfaces /><Docs><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Windows.Forms.SearchForVirtualItemEventArgs" /> is constructed and passed to the <see cref="E:System.Windows.Forms.ListView.SearchForVirtualItem" /> event when you call the <see cref="Overload:System.Windows.Forms.ListView.FindItemWithText" /> or <see cref="Overload:System.Windows.Forms.ListView.FindNearestItem" /> methods on a <see cref="T:System.Windows.Forms.ListView" /> control in virtual mode.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Provides data for the <see cref="E:System.Windows.Forms.ListView.SearchForVirtualItem" /> event. </para></summary></Docs><Members><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public SearchForVirtualItemEventArgs (bool isTextSearch, bool isPrefixSearch, bool includeSubItemsInSearch, string text, System.Drawing.Point startingPoint, System.Windows.Forms.SearchDirectionHint direction, int startIndex);" /><MemberType>Constructor</MemberType><Parameters><Parameter Name="isTextSearch" Type="System.Boolean" /><Parameter Name="isPrefixSearch" Type="System.Boolean" /><Parameter Name="includeSubItemsInSearch" Type="System.Boolean" /><Parameter Name="text" Type="System.String" /><Parameter Name="startingPoint" Type="System.Drawing.Point" /><Parameter Name="direction" Type="System.Windows.Forms.SearchDirectionHint" /><Parameter Name="startIndex" Type="System.Int32" /></Parameters><Docs><remarks>To be added.</remarks><since version=".NET 2.0" /><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Windows.Forms.SearchForVirtualItemEventArgs" /> class. </para></summary><param name="isTextSearch"><attribution license="cc4" from="Microsoft" modified="false" />A value indicating whether the search is a text search.</param><param name="isPrefixSearch"><attribution license="cc4" from="Microsoft" modified="false" />A value indicating whether the search is a prefix search.</param><param name="includeSubItemsInSearch"><attribution license="cc4" from="Microsoft" modified="false" />A value indicating whether to include subitems of list items in the search.</param><param name="text"><attribution license="cc4" from="Microsoft" modified="false" />The text of the item to search for.</param><param name="startingPoint"><attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Drawing.Point" /> at which to start the search.</param><param name="direction"><attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Windows.Forms.SearchDirectionHint" /> values.</param><param name="startIndex"><attribution license="cc4" from="Microsoft" modified="false" />The index of the <see cref="T:System.Windows.Forms.ListViewItem" /> at which to start the search.</param></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Direction"><MemberSignature Language="C#" Value="public System.Windows.Forms.SearchDirectionHint Direction { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Windows.Forms.SearchDirectionHint</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Identifying the nearest item in a <see cref="T:System.Windows.Forms.ListView" /> control can vary depending on the operating system the application is running on; therefore, the search direction is a hint, and not an absolute guarantee of results.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the direction from the current item that the search should take place.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="IncludeSubItemsInSearch"><MemberSignature Language="C#" Value="public bool IncludeSubItemsInSearch { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Subitems are typically used when a <see cref="T:System.Windows.Forms.ListView" /> is in <see cref="F:System.Windows.Forms.View.Details" /> view.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the search should include subitems of list items.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Index"><MemberSignature Language="C#" Value="public int Index { set; get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>Set the <see cref="P:System.Windows.Forms.SearchForVirtualItemEventArgs.Index" /> property to the index of the item matching the search criteria when handling the <see cref="E:System.Windows.Forms.ListView.SearchForVirtualItem" /> event.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets or sets the index of the <see cref="T:System.Windows.Forms.ListViewItem" /> found in the <see cref="T:System.Windows.Forms.ListView" /> .</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="IsPrefixSearch"><MemberSignature Language="C#" Value="public bool IsPrefixSearch { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="P:System.Windows.Forms.SearchForVirtualItemEventArgs.Text" /> property can specify a substring of the desired text. The <see cref="P:System.Windows.Forms.SearchForVirtualItemEventArgs.IsPrefixSearch" /> property indicates whether the search should match items that start with the search text. </para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the search should return an item if its text starts with the search text.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="IsTextSearch"><MemberSignature Language="C#" Value="public bool IsTextSearch { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Boolean</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You can search a <see cref="T:System.Windows.Forms.ListView" /> control by location by using the <see cref="Overload:System.Windows.Forms.ListView.FindNearestItem" /> method, or you can perform a text search by using the <see cref="Overload:System.Windows.Forms.ListView.FindItemWithText" /> method.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets a value indicating whether the search is a text search.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="StartIndex"><MemberSignature Language="C#" Value="public int StartIndex { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Int32</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>This property is used for a location search.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the index of the <see cref="T:System.Windows.Forms.ListViewItem" /> where the search starts.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="StartingPoint"><MemberSignature Language="C#" Value="public System.Drawing.Point StartingPoint { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.Drawing.Point</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You can search a <see cref="T:System.Windows.Forms.ListView" /> control by location by using the <see cref="Overload:System.Windows.Forms.ListView.FindNearestItem" /> method, or you can perform a text search by using the <see cref="Overload:System.Windows.Forms.ListView.FindItemWithText" /> method.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the starting location of the search.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Text"><MemberSignature Language="C#" Value="public string Text { get; }" /><MemberType>Property</MemberType><ReturnValue><ReturnType>System.String</ReturnType></ReturnValue><Docs><value>To be added.</value><since version=".NET 2.0" /><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>You can search a <see cref="T:System.Windows.Forms.ListView" /> control by location by using the <see cref="Overload:System.Windows.Forms.ListView.FindNearestItem" /> method, or you can perform a text search by using the <see cref="Overload:System.Windows.Forms.ListView.FindItemWithText" /> method.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Gets the text used to find an item in the <see cref="T:System.Windows.Forms.ListView" /> control.</para></summary></Docs><AssemblyInfo><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member></Members></Type>