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 인스턴스에서 제거할 컨트롤의 인덱스(0부터 시작)입니다.
예외
예외 | 상황 |
---|---|
ArgumentOutOfRangeException | 인덱스가 0보다 작거나, 인덱스 개수보다 크거나 같은 경우 |
설명
디자인 타임에 추가된 컨트롤은 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 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.