Stroke

Stroke class

定义形状的笔划。

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

public class Stroke

特性

姓名描述
BackColor { get; set; }获取或设置笔划的背景颜色。
Color { get; set; }定义描边的颜色。
Color2 { get; set; }定义笔划的第二种颜色。
DashStyle { get; set; }指定笔划的点和划线图案。
EndArrowLength { get; set; }定义笔画末端的箭头长度。
EndArrowType { get; set; }定义笔画末端的箭头。
EndArrowWidth { get; set; }定义笔画末端的箭头宽度。
EndCap { get; set; }定义笔画末端的端盖样式。
Fill { get; }获取填充格式Stroke.
ForeColor { get; set; }获取或设置笔划的前景色。
ImageBytes { get; }定义描边图像或图案填充的图像。
JoinStyle { get; set; }定义折线的连接样式。
LineStyle { get; set; }定义笔画的线条样式。
On { get; set; }定义是否对路径进行描边。
Opacity { get; set; }定义笔划的透明度量。有效范围为 0 到 1.
StartArrowLength { get; set; }定义笔划起点的箭头长度。
StartArrowType { get; set; }定义笔划起点的箭头。
StartArrowWidth { get; set; }定义笔划起点的箭头宽度。
Transparency { get; set; }获取或设置 0.0(不透明)和 1.0(清晰)之间的值,表示笔划的透明度 。
Visible { get; set; }获取或设置指示笔划是否可见的标志。
Weight { get; set; }定义描画形状路径的画笔厚度(以点为单位)。

评论

使用Stroke属性来访问形状的描边属性。 您不创建Stroke直接上课。

例子

显示如何更改笔划属性。

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

Shape shape = builder.InsertShape(ShapeType.Rectangle, RelativeHorizontalPosition.LeftMargin, 100,
    RelativeVerticalPosition.TopMargin, 100, 200, 200, WrapType.None);

// 基本形状,例如矩形,有两个可见部分。
// 1 - 填充,适用于形状轮廓内的区域:
shape.Fill.ForeColor = Color.White;

// 2 - 笔划,标记形状的轮廓:
// 修改该形状笔划的各种属性。
Stroke stroke = shape.Stroke;
stroke.On = true;
stroke.Weight = 5;
stroke.Color = Color.Red;
stroke.DashStyle = DashStyle.ShortDashDotDot;
stroke.JoinStyle = JoinStyle.Miter;
stroke.EndCap = EndCap.Square;
stroke.LineStyle = ShapeLineStyle.Triple;
stroke.Fill.TwoColorGradient(Color.Red, Color.Blue, GradientStyle.Vertical, GradientVariant.Variant1);

doc.Save(ArtifactsDir + "Shape.Stroke.docx");

也可以看看