ListView.ListViewItemCollection.Find(String, Boolean) Méthode

Définition

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

ListViewItem[]

É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.

S’applique à