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
)
参数
- index
类型:System.Int32
要从 ControlCollection 实例移除的控件的从零开始的索引。
异常
异常 | 条件 |
---|---|
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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。