共用方式為


ControlCollection.RemoveAt 方法

ControlCollection 執行個體中移除指定之索引的控制項。

命名空間:  Microsoft.Office.Tools.Excel
組件:  Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)

語法

'宣告
Sub RemoveAt ( _
    index As Integer _
)
void RemoveAt(
    int index
)

參數

例外狀況

例外狀況 條件
ArgumentOutOfRangeException

索引小於零,或索引等於或大於計數。

備註

在設計階段加入的控制項,無法從 ControlCollection 執行個體中移除。 您只能使用 RemoveAt 方法移除在執行階段所加入的控制項。

範例

下列程式碼範例會將 Button 控制項及 MonthCalendar 控制項加入至工作表。 按下按鈕時,程式碼會移除索引所指定的 MonthCalendar 控制項。

Private Sub ExcelControlRemoveAt()

    Dim Button2 As Microsoft.Office.Tools.Excel. _
        Controls.Button = Me.Controls.AddButton( _
        0, 0, 56.25, 17.25, "Button2")
    Dim MonthCalendar1 As Microsoft.Office.Tools. _
        Excel.Controls.MonthCalendar = Me.Controls. _
        AddMonthCalendar(0, 20, 75, 15, "MonthCalendar1")

    Button2.Text = "Remove"

    AddHandler Button2.Click, AddressOf Button2_Click

End Sub 
Private Sub Button2_Click(ByVal sender As Object, ByVal e _
    As EventArgs)

    Me.Controls.RemoveAt(1)

End Sub
private void ExcelControlRemoveAt()
{

    Microsoft.Office.Tools.Excel.Controls.Button button2 =
        this.Controls.AddButton(0, 0, 56.25, 17.25,
        "button2");
    Microsoft.Office.Tools.Excel.Controls.MonthCalendar
         monthCalendar1 = this.Controls.AddMonthCalendar(
         0, 20, 75, 15, "monthCalendar1");
    button2.Text = "Remove";
    button2.Click += new EventHandler(button2_Click);
}

void button2_Click(object sender, EventArgs e)
{
    this.Controls.RemoveAt(1);
}

.NET Framework 安全性

請參閱

參考

ControlCollection 介面

Microsoft.Office.Tools.Excel 命名空間