HorizontalRuleFormat

HorizontalRuleFormat class

Represents horizontal rule formatting.

To learn more, visit the Working with Shapes documentation article.

public class HorizontalRuleFormat

Properties

NameDescription
Alignment { get; set; }Gets or sets the alignment of the horizontal rule.
Color { get; set; }Gets or sets the brush color that fills the horizontal rule.
Height { get; set; }Gets or sets the height of the horizontal rule.
NoShade { get; set; }Indicates the presence of 3D shading for the horizontal rule. If true, then the horizontal rule is without 3D shading and solid color is used.
WidthPercent { get; set; }Gets or sets the length of the specified horizontal rule expressed as a percentage of the window width.

Examples

Shows how to insert a horizontal rule shape, and customize its formatting.

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
Shape shape = builder.InsertHorizontalRule();

HorizontalRuleFormat horizontalRuleFormat = shape.HorizontalRuleFormat;
horizontalRuleFormat.Alignment = HorizontalRuleAlignment.Center;
horizontalRuleFormat.WidthPercent = 70;
horizontalRuleFormat.Height = 3;
horizontalRuleFormat.Color = Color.Blue;
horizontalRuleFormat.NoShade = true;

Assert.True(shape.IsHorizontalRule);
Assert.True(shape.HorizontalRuleFormat.NoShade);

See Also