ToolStripItemCollection.Insert(Int32, ToolStripItem) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將指定的項目插入至集合中的指定索引處。
public:
void Insert(int index, System::Windows::Forms::ToolStripItem ^ value);
public void Insert (int index, System.Windows.Forms.ToolStripItem value);
member this.Insert : int * System.Windows.Forms.ToolStripItem -> unit
Public Sub Insert (index As Integer, value As ToolStripItem)
參數
- index
- Int32
ToolStripItemCollection 中要插入 ToolStripItem 的位置。
- value
- ToolStripItem
要插入的 ToolStripItem。
例外狀況
value
參數為 null
。