TabControl.TabPageCollection.Item[] 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션에서 탭 페이지를 가져오거나 설정합니다.
오버로드
Item[Int32] |
컬렉션의 TabPage을 가져오거나 설정합니다. |
Item[String] |
컬렉션에서 지정된 키가 있는 탭 페이지를 가져옵니다. |
Item[Int32]
컬렉션의 TabPage을 가져오거나 설정합니다.
public:
virtual property System::Windows::Forms::TabPage ^ default[int] { System::Windows::Forms::TabPage ^ get(int index); void set(int index, System::Windows::Forms::TabPage ^ value); };
public virtual System.Windows.Forms.TabPage this[int index] { get; set; }
member this.Item(int) : System.Windows.Forms.TabPage with get, set
Default Public Overridable Property Item(index As Integer) As TabPage
매개 변수
- index
- Int32
가져오거나 설정할 탭 페이지의 0부터 시작하는 인덱스입니다.
속성 값
지정한 인덱스에 있는 TabPage입니다.
예외
index
가 0보다 작거나 사용할 수 있는 가장 높은 인덱스보다 클 경우
추가 정보
적용 대상
Item[String]
컬렉션에서 지정된 키가 있는 탭 페이지를 가져옵니다.
public:
virtual property System::Windows::Forms::TabPage ^ default[System::String ^] { System::Windows::Forms::TabPage ^ get(System::String ^ key); };
public virtual System.Windows.Forms.TabPage this[string key] { get; }
public virtual System.Windows.Forms.TabPage? this[string? key] { get; }
member this.Item(string) : System.Windows.Forms.TabPage
Default Public Overridable ReadOnly Property Item(key As String) As TabPage
매개 변수
- key
- String
검색할 탭 페이지의 이름입니다.
속성 값
지정된 키를 가진 TabPage입니다.
설명
Name 키에 해당 하는 속성을 TabPage 에 TabControl.TabPageCollection합니다.
키 비교는 대/소문자 구분 하지 않습니다. 매개 변수가 key
null
또는 빈 문자열이면 .를 Item[] 반환합니다 null
.