ToolboxItemCollection.Contains(ToolboxItem) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した 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
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET