メモ : この名前空間、クラス、およびメンバは、.NET Framework Version 1.1 だけでサポートされています。
このメンバは、.NET Framework インフラストラクチャのサポートを目的としています。独自に作成したコード内で直接使用することはできません。
Private Default Property Item( _
ByVal index As Integer _) As Object Implements IList.Item
[C#]
object IList.this[
intindex] {get; set;}
[C++]
private: __property Object* System::Collections::IList::get_Item(intindex);private: __property void System::Collections::IList::set_Item(intindex, Object*);
[JScript]
private function get IList.get_Item(index : int) : Object;private function set IList.set_Item(index : int, value : Object);またはprivate function get IList.get_Item(index : int) : Object;private function set IList.set_Item(index : int, value : Object);
[JScript] JScript では、この型で定義されている既定のインデックス プロパティを使用することができます。しかし、独自のインデックス プロパティを明示的に定義することはできません。ただし、このクラスの expando 属性を指定すると、既定のインデックス プロパティが提供されます。提供されるインデックス プロパティの型は Object 型であり、インデックス型は String になります。
参照
ToolBar.ToolBarButtonCollection クラス | ToolBar.ToolBarButtonCollection メンバ | System.Windows.Forms 名前空間