Aspose::Words::Tables::Table::get_TopPadding method
Contents
[
Hide
]Table::get_TopPadding method
Gets or sets the amount of space (in points) to add above the contents of cells.
double Aspose::Words::Tables::Table::get_TopPadding()
Examples
Shows how to configure content padding in a table.
auto doc = MakeObject<Document>();
auto builder = MakeObject<DocumentBuilder>(doc);
SharedPtr<Table> table = builder->StartTable();
builder->InsertCell();
builder->Write(u"Row 1, cell 1.");
builder->InsertCell();
builder->Write(u"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->set_LeftPadding(30);
table->set_RightPadding(60);
table->set_TopPadding(10);
table->set_BottomPadding(90);
table->set_PreferredWidth(PreferredWidth::FromPoints(250));
doc->Save(ArtifactsDir + u"DocumentBuilder.SetRowFormatting.docx");
See Also
- Class Table
- Namespace Aspose::Words::Tables
- Library Aspose.Words for C++