Aspose::Words::DocumentBuilderOptions class

DocumentBuilderOptions class

Allows to specify additional options for the document building process.

class DocumentBuilderOptions : public System::Object

Methods

MethodDescription
DocumentBuilderOptions()
get_ContextTableFormatting() constTrue if the formatting applied to table content does not affect the formatting of the content that follows it. Default value is true.
get_DesignMode() constCorresponds to Design Mode in Microsoft Word.
GetType() const override
Is(const System::TypeInfo&) const override
set_ContextTableFormatting(bool)Setter for Aspose::Words::DocumentBuilderOptions::get_ContextTableFormatting.
set_DesignMode(bool)Corresponds to Design Mode in Microsoft Word.
static Type()

Examples

Shows how to ignore table formatting for content after.

auto doc = System::MakeObject<Aspose::Words::Document>();
auto builderOptions = System::MakeObject<Aspose::Words::DocumentBuilderOptions>();
builderOptions->set_ContextTableFormatting(true);
auto builder = System::MakeObject<Aspose::Words::DocumentBuilder>(doc, builderOptions);

// Adds content before the table.
// Default font size is 12.
builder->Writeln(u"Font size 12 here.");
builder->StartTable();
builder->InsertCell();
// Changes the font size inside the table.
builder->get_Font()->set_Size(5);
builder->Write(u"Font size 5 here");
builder->InsertCell();
builder->Write(u"Font size 5 here");
builder->EndRow();
builder->EndTable();

// If ContextTableFormatting is true, then table formatting isn't applied to the content after.
// If ContextTableFormatting is false, then table formatting is applied to the content after.
builder->Writeln(u"Font size 12 here.");

doc->Save(get_ArtifactsDir() + u"Table.ContextTableFormatting.docx");

See Also