次の方法で共有


ToolboxItemCollection.Contains(ToolboxItem) メソッド

定義

指定した ToolboxItem がコレクションに格納されているかどうかを示します。

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

パラメーター

value
ToolboxItem

コレクションで検索する ToolboxItem

戻り値

コレクションに指定したオブジェクトが格納されている場合は true。それ以外の場合は false

次のコード例では、 の メソッドを Contains 使用する方法を 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

適用対象