GridItemCollection.Item[] 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션에서 GridItem을 가져옵니다.
오버로드
Item[Int32] |
지정된 인덱스의 GridItem를 가져옵니다. |
Item[String] |
레이블이 일치하는 GridItem을 가져옵니다. |
Item[Int32]
지정된 인덱스의 GridItem를 가져옵니다.
public:
property System::Windows::Forms::GridItem ^ default[int] { System::Windows::Forms::GridItem ^ get(int index); };
public System.Windows.Forms.GridItem this[int index] { get; }
member this.Item(int) : System.Windows.Forms.GridItem
Default Public ReadOnly Property Item(index As Integer) As GridItem
매개 변수
- index
- Int32
반환할 모눈 항목 인덱스입니다.
속성 값
지정한 인덱스에 있는 GridItem입니다.
적용 대상
Item[String]
레이블이 일치하는 GridItem을 가져옵니다.
public:
property System::Windows::Forms::GridItem ^ default[System::String ^] { System::Windows::Forms::GridItem ^ get(System::String ^ label); };
public System.Windows.Forms.GridItem this[string label] { get; }
public System.Windows.Forms.GridItem? this[string label] { get; }
member this.Item(string) : System.Windows.Forms.GridItem
Default Public ReadOnly Property Item(label As String) As GridItem
매개 변수
- label
- String
그리드 항목 레이블과 일치시킬 문자열 값입니다.
속성 값
레이블이 label
매개 변수와 일치하는 모눈 항목입니다.