TextWrapping
Table.TextWrapping property
获取或设置TextWrapping
对于表.
public TextWrapping TextWrapping { get; set; }
例子
展示如何使用表格文本换行。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Table table = builder.StartTable();
builder.InsertCell();
builder.Write("Cell 1");
builder.InsertCell();
builder.Write("Cell 2");
builder.EndTable();
table.PreferredWidth = PreferredWidth.FromPoints(300);
builder.Font.Size = 16;
builder.Writeln("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.");
// 将“TextWrapping”属性设置为“TextWrapping.Around”以使表格将文本环绕在其周围,
// 并通过设置位置将其推入下面的段落。
table.TextWrapping = TextWrapping.Around;
table.AbsoluteHorizontalDistance = 100;
table.AbsoluteVerticalDistance = 20;
doc.Save(ArtifactsDir + "Table.WrapText.docx");
也可以看看
- enum TextWrapping
- class Table
- 命名空间 Aspose.Words.Tables
- 部件 Aspose.Words