TableCellCollection.Count Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient le nombre d'objets TableCell dans la TableCellCollection.
public:
property int Count { int get(); };
public int Count { get; }
member this.Count : int
Public ReadOnly Property Count As Integer
Valeur de propriété
Nombre d'objets TableCell dans la TableCellCollection. La valeur par défaut est 0.
Implémente
Exemples
L’exemple suivant montre comment utiliser la Count propriété pour déterminer le nombre de cellules dans le TableCellCollection. Notez que dans l’exemple, la Cells propriété de est TableRow une instance de la TableCellCollection classe .
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
Remarques
Utilisez cette propriété pour déterminer le nombre de cellules dans .TableCellCollection La Count propriété est souvent utilisée lors de l’itération dans la collection pour déterminer la limite supérieure.