XpsDocument.CreatePathFigure

CreatePathFigure(PointF, bool)

创建一个新路径图。

public XpsPathFigure CreatePathFigure(PointF startPoint, bool isClosed = false)
范围类型描述
startPointPointF路径图形第一段的起点。
isClosedBoolean指定路径是否闭合。如果设置为 true,则描边绘制 “闭合”,即路径图形最后一段中的最后一个点与 StartPoint 属性中指定的点连接,否则描边绘制为“打开”,并且 最后点未连接到起点。仅当路径图 is 用于指定笔划的 {Path} 元素时才适用。

返回值

新路径图。

也可以看看


CreatePathFigure(PointF, List<XpsPathSegment>, bool)

创建一个新路径图。

public XpsPathFigure CreatePathFigure(PointF startPoint, List<XpsPathSegment> segments, 
    bool isClosed = false)
范围类型描述
startPointPointF路径图形第一段的起点。
segmentsList`1路径段列表。
isClosedBoolean指定路径是否闭合。如果设置为 true,则描边绘制 “闭合”,即路径图形最后一段中的最后一个点与 StartPoint 属性中指定的点连接,否则描边绘制为“打开”,并且 最后点未连接到起点。仅当路径图 is 用于指定笔划的 {Path} 元素时才适用。

返回值

新路径图。

也可以看看