LineSegment Constructors

Definition

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.

Applies to