ListView.ListViewItemCollection.Find(String, Boolean) 方法

定义

搜索名称与指定键匹配的项,也可以选择搜索子项。

public:
 cli::array <System::Windows::Forms::ListViewItem ^> ^ Find(System::String ^ key, bool searchAllSubItems);
public System.Windows.Forms.ListViewItem[] Find (string key, bool searchAllSubItems);
member this.Find : string * bool -> System.Windows.Forms.ListViewItem[]
Public Function Find (key As String, searchAllSubItems As Boolean) As ListViewItem()

参数

key
String

要搜索的项名称。

searchAllSubItems
Boolean

若要搜索子项,则为 true;否则为 false

返回

ListViewItem[]

匹配项;如果没有匹配项,则为一个空数组。

例外

仅 .NET 5 及更高版本: keynull 空字符串。

注解

关键比较不区分大小写。 该 Name 属性对应于中某个 ListViewItem 项的 ListView.ListViewItemCollection键。

适用于