Collection of path segments for composing vector paths on document pages; use to build shapes before stroking or filling.
Definition
Namespace:Telerik.Windows.Documents.Fixed.Model.Collections
Assembly:Telerik.Windows.Documents.Core.dll
Syntax:
public sealed class PathSegmentCollection : List<PathSegment>, IList, ICollection, IEnumerable
Inheritance: objectList<PathSegment>PathSegmentCollection
Implements:
Methods
Adds a cubic Bézier segment defined by numeric coordinates and returns it.
public BezierSegment AddBezierSegment(float x1, float y1, float x2, float y2, float x3, float y3)
The x-coordinate of the starting point of the curve.
y1floatThe y-coordinate of the starting point of the curve.
x2floatThe x-coordinate of the first control point for the curve.
y2floatThe y-coordinate of the first control point for the curve.
x3floatThe x-coordinate of the endpoint of the curve.
y3floatThe y-coordinate of the endpoint of the curve.
Returns:Adds a line segment ending at the specified point and returns it.