Item
内容
[
隐藏
]RowCollection indexer
检索Row
在给定的索引.
public Row this[int index] { get; }
范围 | 描述 |
---|---|
index | 集合的索引。 |
评论
该索引是从零开始的。
允许使用负索引,并指示从集合的后面进行访问。 例如 -1 表示最后一项,-2 表示最后一项,依此类推。
如果索引大于或等于列表中的项目数,则返回空引用。
如果索引为负并且其绝对值大于列表中的项目数,则返回空引用。
例子
演示如何迭代文档中的所有表格并打印每个单元格的内容。
Document doc = new Document(MyDir + "Tables.docx");
TableCollection tables = doc.FirstSection.Body.Tables;
Assert.AreEqual(2, tables.ToArray().Length);
for (int i = 0; i < tables.Count; i++)
{
Console.WriteLine($"Start of Table {i}");
RowCollection rows = tables[i].Rows;
// 我们可以对行集合使用“ToArray”方法将其克隆到数组中。
Assert.AreEqual(rows, rows.ToArray());
Assert.AreNotSame(rows, rows.ToArray());
for (int j = 0; j < rows.Count; j++)
{
Console.WriteLine($"\tStart of Row {j}");
CellCollection cells = rows[j].Cells;
// 我们可以对单元集合使用“ToArray”方法将其克隆到数组中。
Assert.AreEqual(cells, cells.ToArray());
Assert.AreNotSame(cells, cells.ToArray());
for (int k = 0; k < cells.Count; k++)
{
string cellText = cells[k].ToString(SaveFormat.Text).Trim();
Console.WriteLine($"\t\tContents of Cell:{k} = \"{cellText}\"");
}
Console.WriteLine($"\tEnd of Row {j}");
}
Console.WriteLine($"End of Table {i}\n");
}
也可以看看
- class Row
- class RowCollection
- 命名空间 Aspose.Words.Tables
- 部件 Aspose.Words