LineSegment 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 LineSegment class.
Overloads
LineSegment() |
Initializes a new instance of the LineSegment class. |
LineSegment(Point, Boolean) |
Initializes a new instance of the LineSegment class that has the specified end Point and Boolean that determines whether this LineSegment is stroked. |
LineSegment()
Initializes a new instance of the LineSegment class.
public:
LineSegment();
public LineSegment ();
Public Sub New ()
Applies to
LineSegment(Point, Boolean)
Initializes a new instance of the LineSegment class that has the specified end Point and Boolean that determines whether this LineSegment is stroked.
public:
LineSegment(System::Windows::Point point, bool isStroked);
public LineSegment (System.Windows.Point point, bool isStroked);
new System.Windows.Media.LineSegment : System.Windows.Point * bool -> System.Windows.Media.LineSegment
Public Sub New (point As Point, isStroked As Boolean)
Parameters
- point
- Point
The end point of this LineSegment.
- isStroked
- Boolean
true
to stroke this LineSegment; otherwise, false
.
Applies to
.NET