TableRowCollection.Count Property

Definition

Gets the number of TableRow objects in the TableRowCollection.

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

Property Value

The number of TableRow objects in the TableRowCollection. The default is 0.

Implements

Examples

The following example demonstrates how to use the Count property to determine the number of rows in the TableRowCollection. Note that in the example, the Rows property of the Table is an instance of the TableRowCollection class.

   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

Remarks

Use this property to determine the number of rows in the TableRowCollection. The Count property is often used when iterating through the collection to determine the upper bound.

Applies to

See also