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 循环访问集合以确定上限时,通常会使用 属性。