ToolboxItemCollection.Contains(ToolboxItem) Methode
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Geeft aan of de verzameling de opgegeven ToolboxItembevat.
public:
bool Contains(System::Drawing::Design::ToolboxItem ^ value);
public bool Contains(System.Drawing.Design.ToolboxItem value);
member this.Contains : System.Drawing.Design.ToolboxItem -> bool
Public Function Contains (value As ToolboxItem) As Boolean
Parameters
- value
- ToolboxItem
Een ToolboxItem om naar de verzameling te zoeken.
Retouren
true als de verzameling het opgegeven object bevat; anders, false.
Voorbeelden
In het volgende codevoorbeeld ziet u hoe u de Contains methode van een ToolboxItemCollection.
// If the collection contains the specified ToolboxItem,
// retrieve the collection index of the specified item.
int indx = -1;
if ( collection->Contains( item ) )
indx = collection->IndexOf( item );
// If the collection contains the specified ToolboxItem,
// retrieve the collection index of the specified item.
int indx = -1;
if( collection.Contains( item ) )
indx = collection.IndexOf( item );
' If the collection contains the specified ToolboxItem,
' retrieve the collection index of the specified item.
Dim indx As Integer = -1
If collection.Contains(item) Then
indx = collection.IndexOf(item)
End If