HorizontalRuleFormat

HorizontalRuleFormat class

表示水平线格式化。

要了解更多信息,请访问使用形状文档文章。

public class HorizontalRuleFormat

特性

姓名描述
Alignment { get; set; }获取或设置水平线的对齐方式。
Color { get; set; }获取或设置填充水平线的画笔颜色。
Height { get; set; }获取或设置水平线的高度。
NoShade { get; set; }指示水平线存在 3D 阴影。 如果真的,则水平线没有 3D 阴影并使用纯色。
WidthPercent { get; set; }获取或设置指定水平线的长度,以窗口宽度的百分比表示。

例子

演示如何插入水平标尺形状并自定义其格式。

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);

也可以看看