FromPercent
内容
[
隐藏
]PreferredWidth.FromPercent method
一种创建方法,返回一个新实例,该实例表示指定为百分比的首选宽度。
public static PreferredWidth FromPercent(double percent)
范围 | 类型 | 描述 |
---|---|---|
percent | Double | 该值必须在 0 到 100 之间。 |
例子
演示如何将表格设置为自动适合页面宽度的 50%。
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.InsertCell();
builder.Write("Cell #3");
table.PreferredWidth = PreferredWidth.FromPercent(50);
doc.Save(ArtifactsDir + "DocumentBuilder.InsertTableWithPreferredWidth.docx");
演示如何设置表格单元格的首选宽度。
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Table table = builder.StartTable();
// 有两种方法将“PreferredWidth”类应用于表格单元格。
// 1 - 根据点设置绝对首选宽度:
builder.InsertCell();
builder.CellFormat.PreferredWidth = PreferredWidth.FromPoints(40);
builder.CellFormat.Shading.BackgroundPatternColor = Color.LightYellow;
builder.Writeln($"Cell with a width of {builder.CellFormat.PreferredWidth}.");
// 2 - 根据表格宽度的百分比设置相对首选宽度:
builder.InsertCell();
builder.CellFormat.PreferredWidth = PreferredWidth.FromPercent(20);
builder.CellFormat.Shading.BackgroundPatternColor = Color.LightBlue;
builder.Writeln($"Cell with a width of {builder.CellFormat.PreferredWidth}.");
builder.InsertCell();
// 未指定首选宽度的单元格将占用剩余的可用空间。
builder.CellFormat.PreferredWidth = PreferredWidth.Auto;
// “PreferredWidth”属性的每个配置都会创建一个新对象。
Assert.AreNotEqual(table.FirstRow.Cells[1].CellFormat.PreferredWidth.GetHashCode(),
builder.CellFormat.PreferredWidth.GetHashCode());
builder.CellFormat.Shading.BackgroundPatternColor = Color.LightGreen;
builder.Writeln("Automatically sized cell.");
doc.Save(ArtifactsDir + "DocumentBuilder.InsertCellsWithPreferredWidths.docx");
也可以看看
- class PreferredWidth
- 命名空间 Aspose.Words.Tables
- 部件 Aspose.Words