TableRowCollection.Count 属性

定义

获取 TableRowTableRowCollection 对象的数目。

public:
 property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer

属性值

TableRowTableRowCollection 对象的数目。 默认值为 0。

实现

示例

下面的示例演示如何使用 Count 属性确定 中的 TableRowCollection行数。 请注意,在示例中, RowsTable 属性是 类的 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 循环访问集合以确定上限时,通常会使用 属性。

适用于

另请参阅