PreferredWidth
Table.PreferredWidth property
Получает или задает предпочтительную ширину таблицы.
public PreferredWidth PreferredWidth { get; set; }
Примечания
Значение по умолчанию:Auto
.
Примеры
Показывает, как настроить автоматическое размещение таблицы на 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");
Смотрите также
- class PreferredWidth
- class Table
- пространство имен Aspose.Words.Tables
- сборка Aspose.Words