Aspose::Words::Tables::Table::get_LeftPadding method

Table::get_LeftPadding method

Gets or sets the amount of space (in points) to add to the left of the contents of cells.

double Aspose::Words::Tables::Table::get_LeftPadding()

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