GridItemCollection.Item[] 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션에서 가져옵니다 GridItem .
오버로드
| Name | Description |
|---|---|
| Item[Int32] |
지정된 인덱스에서 GridItem 가져옵니다. |
| Item[String] |
일치하는 레이블을 GridItem 가져옵니다. |
Item[Int32]
- Source:
- GridItemCollection.cs
- Source:
- GridItemCollection.cs
- Source:
- GridItemCollection.cs
- Source:
- GridItemCollection.cs
- Source:
- GridItemCollection.cs
지정된 인덱스에서 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]
- Source:
- GridItemCollection.cs
- Source:
- GridItemCollection.cs
- Source:
- GridItemCollection.cs
- Source:
- GridItemCollection.cs
- Source:
- GridItemCollection.cs
일치하는 레이블을 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 .