Aspose::Words::BorderCollection::get_LineStyle method

BorderCollection::get_LineStyle method

Gets or sets the border style.

Aspose::Words::LineStyle Aspose::Words::BorderCollection::get_LineStyle()

Remarks

Returns the style of the first border in the collection.

Sets the style of all borders in the collection excluding diagonal borders.

Examples

Shows how to create green wavy page border with a shadow.

auto doc = MakeObject<Document>();
SharedPtr<PageSetup> pageSetup = doc->get_Sections()->idx_get(0)->get_PageSetup();

pageSetup->get_Borders()->set_LineStyle(LineStyle::DoubleWave);
pageSetup->get_Borders()->set_LineWidth(2);
pageSetup->get_Borders()->set_Color(System::Drawing::Color::get_Green());
pageSetup->get_Borders()->set_DistanceFromText(24);
pageSetup->get_Borders()->set_Shadow(true);

doc->Save(ArtifactsDir + u"PageSetup.PageBorders.docx");

See Also