ToolboxItemCollection.Item[Int32] プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定されたインデックス位置にある ToolboxItem を取得します。
public:
property System::Drawing::Design::ToolboxItem ^ default[int] { System::Drawing::Design::ToolboxItem ^ get(int index); };
public System.Drawing.Design.ToolboxItem this[int index] { get; }
member this.Item(int) : System.Drawing.Design.ToolboxItem
Default Public ReadOnly Property Item(index As Integer) As ToolboxItem
パラメーター
- index
- Int32
取得または設定するオブジェクトのインデックス。
プロパティ値
コレクション内の有効な各インデックスにある ToolboxItem。
例
次のコード例では、 のインデクサーの使用を ToolboxItemCollection示します。
// Get the ToolboxItem at each index.
ToolboxItem^ item = nullptr;
for ( int index = 0; index < collection->Count; index++ )
item = collection[ index ];
// Get the ToolboxItem at each index.
ToolboxItem item = null;
for( int index = 0; index<collection.Count; index++ )
item = collection[index];
' Get the ToolboxItem at each index.
Dim item As ToolboxItem = Nothing
Dim index As Integer
For index = 0 To collection.Count - 1
item = collection(index)
Next index
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET