Aspose::Words::Drawing::HorizontalRuleAlignment enum
HorizontalRuleAlignment enum
Represents the alignment for the specified horizontal rule.
enum class HorizontalRuleAlignment
Values
Name | Value | Description |
---|---|---|
Left | 0 | Aligned to the left. |
Center | 1 | Aligned to the center. |
Right | 2 | Aligned to the right. |
Examples
Shows how to insert a horizontal rule shape, and customize its formatting.
auto doc = System::MakeObject<Aspose::Words::Document>();
auto builder = System::MakeObject<Aspose::Words::DocumentBuilder>(doc);
System::SharedPtr<Aspose::Words::Drawing::Shape> shape = builder->InsertHorizontalRule();
System::SharedPtr<Aspose::Words::Drawing::HorizontalRuleFormat> horizontalRuleFormat = shape->get_HorizontalRuleFormat();
horizontalRuleFormat->set_Alignment(Aspose::Words::Drawing::HorizontalRuleAlignment::Center);
horizontalRuleFormat->set_WidthPercent(70);
horizontalRuleFormat->set_Height(3);
horizontalRuleFormat->set_Color(System::Drawing::Color::get_Blue());
horizontalRuleFormat->set_NoShade(true);
ASSERT_TRUE(shape->get_IsHorizontalRule());
ASSERT_TRUE(shape->get_HorizontalRuleFormat()->get_NoShade());
See Also
- Namespace Aspose::Words::Drawing
- Library Aspose.Words for C++