ListView.ListViewItemCollection.Find(String, Boolean) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Recherche les éléments dont le nom correspond à la clé spécifiée, en cherchant de manière facultative les sous-éléments.
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()
Paramètres
- key
- String
Nom de l'élément à rechercher.
- searchAllSubItems
- Boolean
true
pour rechercher des sous-éléments ; sinon, false
.
Retours
Éléments correspondants, ou tableau vide en l’absence d’éléments correspondants.
Exceptions
.NET 5 et versions ultérieures uniquement : key
est null
ou la chaîne vide.
Remarques
La comparaison des clés n’est pas sensible à la casse. La Name propriété correspond à la clé d’un ListViewItem dans le ListView.ListViewItemCollection.