다음을 통해 공유


ControlCollection.IndexOf 메서드 (Object)

지정된 컨트롤을 검색하고 ControlCollection 인스턴스에서 처음 나타나는 컨트롤의 인덱스(0부터 시작)를 반환합니다.

네임스페이스:  Microsoft.Office.Tools.Excel
어셈블리:  Microsoft.Office.Tools.Excel(Microsoft.Office.Tools.Excel.dll)

구문

‘선언
Function IndexOf ( _
    control As Object _
) As Integer
int IndexOf(
    Object control
)

매개 변수

  • control
    형식: System.Object
    인덱스를 찾을 컨트롤입니다.

반환 값

형식: System.Int32
컨트롤의 인덱스이거나, 해당 컨트롤이 ControlCollection 인스턴스에 없는 경우 -1입니다.

예제

다음 코드 예제에서는 워크시트 맨 위에 Button 컨트롤을 추가한 다음 단추의 인덱스를 메시지 상자에 표시합니다.

Private Sub ExcelControlIndexOf()

    Dim Button1 As Microsoft.Office.Tools.Excel. _
        Controls.Button = Me.Controls.AddButton( _
        0, 0, 56.25, 17.25, "Button1")
    Button1.Text = "OK"

    If Me.Controls.Contains(Button1) Then
        MessageBox.Show("The index of Button1 is " _
        & Controls.IndexOf(Button1))
    End If

End Sub 
private void ExcelControlIndexOf()
{

    Microsoft.Office.Tools.Excel.Controls.Button button1 =
        this.Controls.AddButton(0, 0, 56.25, 17.25,
        "button1");
    button1.Text = "OK";

    if (this.Controls.Contains(button1))
    {
        MessageBox.Show("The index of button1 is " +
            Controls.IndexOf(button1));
    }
}

.NET Framework 보안

  • 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.

참고 항목

참조

ControlCollection 인터페이스

IndexOf 오버로드

Microsoft.Office.Tools.Excel 네임스페이스