FirstParagraph
内容
[
隐藏
]Cell.FirstParagraph property
获取直接子级中的第一个段落。
public Paragraph FirstParagraph { get; }
例子
演示如何使用文档生成器创建嵌套表。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// 构建外部表。
Cell cell = builder.InsertCell();
builder.Writeln("Outer Table Cell 1");
builder.InsertCell();
builder.Writeln("Outer Table Cell 2");
builder.EndTable();
// 移动到外部表格的第一个单元格,在该单元格内构建另一个表格。
builder.MoveTo(cell.FirstParagraph);
builder.InsertCell();
builder.Writeln("Inner Table Cell 1");
builder.InsertCell();
builder.Writeln("Inner Table Cell 2");
builder.EndTable();
doc.Save(ArtifactsDir + "DocumentBuilder.InsertNestedTable.docx");
演示如何在不使用文档生成器的情况下构建嵌套表。
public void CreateNestedTable()
{
Document doc = new Document();
// 创建三行四列的外表,然后将其添加到文档中。
Table outerTable = CreateTable(doc, 3, 4, "Outer Table");
doc.FirstSection.Body.AppendChild(outerTable);
// 创建另一个包含两行和两列的表格,然后将其插入到第一个表格的第一个单元格中。
Table innerTable = CreateTable(doc, 2, 2, "Inner Table");
outerTable.FirstRow.FirstCell.AppendChild(innerTable);
doc.Save(ArtifactsDir + "Table.CreateNestedTable.docx");
}
/// <summary>
/// 在文档中创建一个新表格,每个单元格中具有给定的尺寸和文本。
/// </summary>
private static Table CreateTable(Document doc, int rowCount, int cellCount, string cellText)
{
Table table = new Table(doc);
for (int rowId = 1; rowId <= rowCount; rowId++)
{
Row row = new Row(doc);
table.AppendChild(row);
for (int cellId = 1; cellId <= cellCount; cellId++)
{
Cell cell = new Cell(doc);
cell.AppendChild(new Paragraph(doc));
cell.FirstParagraph.AppendChild(new Run(doc, cellText));
row.AppendChild(cell);
}
}
// 您可以使用“标题”和“描述”属性分别向表格添加标题和描述。
// 在我们可以使用这些属性之前,表必须至少有一行。
// 这些属性对于符合 ISO / IEC 29500 的 .docx 文档有意义(请参阅 OoxmlCompliance 类)。
// 如果我们将文档保存为 ISO/IEC 29500 之前的格式,Microsoft Word 将忽略这些属性。
table.Title = "Aspose table title";
table.Description = "Aspose table description";
return table;
}
也可以看看
- class Paragraph
- class Cell
- 命名空间 Aspose.Words.Tables
- 部件 Aspose.Words