TableCellCollection.Count 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
TableCell의 TableCellCollection 개체 수를 가져옵니다.
public:
property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer
속성 값
TableCell의 TableCellCollection 개체 수입니다. 기본값은 0입니다.
구현
예제
다음 예제에서는 사용 Count 하는 방법에 설명 합니다 의 셀 TableCellCollection수를 확인 하는 속성입니다. 예제 Cells 에서 의 TableRow 속성은 클래스 TableCellCollection 인스턴스입니다.
void Button_Click_Coord(object sender, EventArgs e)
{
for (int i=0; i<Table1.Rows.Count; i++)
{
for (int j=0; j<Table1.Rows[i].Cells.Count; j++)
{
Table1.Rows[i].Cells[j].Text = "(" +
j.ToString() + ", " + i.ToString() + ")";
}
}
}
Sub Button_Click_Coord(sender As Object, e As EventArgs)
Dim i As Integer
For i = 0 To Table1.Rows.Count - 1
Dim j As Integer
For j = 0 To (Table1.Rows(i).Cells.Count) - 1
Table1.Rows(i).Cells(j).Text = "(" & j.ToString() & _
", " & i.ToString() & ")"
Next j
Next i
End Sub
설명
의 셀 TableCellCollection수를 확인하려면 이 속성을 사용합니다. Count 속성은 위를 결정 하기 위해 컬렉션을 반복할 때 종종 사용 됩니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET