PolyBezierSegment Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the PolyBezierSegment class.
Overloads
PolyBezierSegment() |
Initializes a new instance of the PolyBezierSegment class. |
PolyBezierSegment(IEnumerable<Point>, Boolean) |
Initializes a new instance of the PolyBezierSegment class with the specified collection of Point objects and a value specifying whether the segments are stroked. |
PolyBezierSegment()
Initializes a new instance of the PolyBezierSegment class.
public:
PolyBezierSegment();
public PolyBezierSegment ();
Public Sub New ()
Applies to
PolyBezierSegment(IEnumerable<Point>, Boolean)
Initializes a new instance of the PolyBezierSegment class with the specified collection of Point objects and a value specifying whether the segments are stroked.
public:
PolyBezierSegment(System::Collections::Generic::IEnumerable<System::Windows::Point> ^ points, bool isStroked);
public PolyBezierSegment (System.Collections.Generic.IEnumerable<System.Windows.Point> points, bool isStroked);
new System.Windows.Media.PolyBezierSegment : seq<System.Windows.Point> * bool -> System.Windows.Media.PolyBezierSegment
Public Sub New (points As IEnumerable(Of Point), isStroked As Boolean)
Parameters
- points
- IEnumerable<Point>
The collection of points that specify the geometry of the cubic Bezier curve segments.
- isStroked
- Boolean
Value specifying whether the segments are stroked.