ListView.ListViewItemCollection.Find(String, Boolean) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
搜尋名稱符合指定之索引鍵的項目,並選擇性地搜尋子項目。
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
。
傳回
相符的項目,如果沒有符合的項目,則為空陣列。
例外狀況
僅限 .NET 5 和更新版本: key
是 null
或空字串。
備註
索引鍵比較不區分大小寫。 屬性 Name 會對應至 中的 索引 ListView.ListViewItemCollection 鍵 ListViewItem 。