Menu.MenuItemCollection.Item[] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從集合中取得項目。
多載
Item[Int32] |
擷取集合中指定索引位置的 MenuItem。 |
Item[String] |
從集合中取得具有指定索引鍵的項目。 |
Item[Int32]
擷取集合中指定索引位置的 MenuItem。
public:
virtual property System::Windows::Forms::MenuItem ^ default[int] { System::Windows::Forms::MenuItem ^ get(int index); };
public virtual System.Windows.Forms.MenuItem this[int index] { get; }
member this.Item(int) : System.Windows.Forms.MenuItem
Default Public Overridable ReadOnly Property Item(index As Integer) As MenuItem
參數
屬性值
位於指定位置處的 MenuItem。
例外狀況
備註
若要將物件指派 MenuItem 給特定位置,或從 Menu.MenuItemCollection 擷取物件,您可以使用特定的索引值來參考集合物件。 的 Menu.MenuItemCollection 索引值為以零起始的索引。
另請參閱
適用於
Item[String]
從集合中取得具有指定索引鍵的項目。
public:
virtual property System::Windows::Forms::MenuItem ^ default[System::String ^] { System::Windows::Forms::MenuItem ^ get(System::String ^ key); };
public virtual System.Windows.Forms.MenuItem this[string key] { get; }
member this.Item(string) : System.Windows.Forms.MenuItem
Default Public Overridable ReadOnly Property Item(key As String) As MenuItem
參數
- key
- String
要從集合中擷取的項目名稱。
屬性值
具有指定金鑰的 MenuItem。
備註
屬性 Name 會對應至 中 之 的 MenuItemMenu.MenuItemCollection 索引鍵。
索引鍵比較不區分大小寫。
key
如果 參數為 null
或空字串, Item[] 則傳 null
回 。