TableRowCollection.Count 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得 TableRow 中 TableRowCollection 物件的數目。
public:
property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer
屬性值
TableRow 中 TableRowCollection 物件的數目。 預設值是 0。
實作
範例
下列範例示範如何使用 Count 屬性來判斷 中的數據 TableRowCollection列數目。 請注意,在範例中, Rows 的 Table 屬性是 類別的 TableRowCollection 實例。
void Button_Click_Coord(object sender, EventArgs e)
{
for (int rowNum = 0; rowNum < Table1.Rows.Count; rowNum++)
{
for (int cellNum = 0;
cellNum < Table1.Rows[cellNum].Cells.Count; cellNum++)
{
Table1.Rows[rowNum].Cells[cellNum].Text =
String.Format("({0}, {1})", rowNum, cellNum);
}
}
}
Sub Button_Click_Coord(sender As Object, e As EventArgs)
Dim rowNum As Integer
For rowNum = 0 To Table1.Rows.Count - 1
Dim cellNum As Integer
For cellNum = 0 To (Table1.Rows(rowNum).Cells.Count) - 1
Table1.Rows(rowNum).Cells(cellNum).Text = _
String.Format("({0}, {1})", rowNum, cellNum)
Next
Next
End Sub
備註
使用這個屬性來判斷 中的數據 TableRowCollection列數目。 在 Count 逐一查看集合以判斷上限時,通常會使用 屬性。