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.
Overloads
| Name | Description |
|---|---|
| LineSegment() |
Initializes a new instance of the LineSegment class. |
| LineSegment(Point) |
Initializes a new instance of the LineSegment class with the specified endpoint. |
LineSegment()
- Source:
- LineSegment.cs
- Source:
- LineSegment.cs
- Source:
- LineSegment.cs
- Source:
- LineSegment.cs
Initializes a new instance of the LineSegment class.
public:
LineSegment();
public LineSegment();
Public Sub New ()
Applies to
LineSegment(Point)
- Source:
- LineSegment.cs
- Source:
- LineSegment.cs
- Source:
- LineSegment.cs
- Source:
- LineSegment.cs
Initializes a new instance of the LineSegment class with the specified endpoint.
public:
LineSegment(Microsoft::Maui::Graphics::Point point);
public LineSegment(Microsoft.Maui.Graphics.Point point);
new Microsoft.Maui.Controls.Shapes.LineSegment : Microsoft.Maui.Graphics.Point -> Microsoft.Maui.Controls.Shapes.LineSegment
Public Sub New (point As Point)
Parameters
- point
- Point
The endpoint of the line segment.