LeftPadding
Contents
[
Hide
]Table.LeftPadding property
Gets or sets the amount of space (in points) to add to the left of the contents of cells.
public double LeftPadding { get; set; }
Examples
Shows how to configure content padding in a table.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Table table = builder.StartTable();
builder.InsertCell();
builder.Write("Row 1, cell 1.");
builder.InsertCell();
builder.Write("Row 1, cell 2.");
builder.EndTable();
// For every cell in the table, set the distance between its contents and each of its borders.
// This table will maintain the minimum padding distance by wrapping text.
table.LeftPadding = 30;
table.RightPadding = 60;
table.TopPadding = 10;
table.BottomPadding = 90;
table.PreferredWidth = PreferredWidth.FromPoints(250);
doc.Save(ArtifactsDir + "DocumentBuilder.SetRowFormatting.docx");
See Also
- class Table
- namespace Aspose.Words.Tables
- assembly Aspose.Words