Share via


ArcSegment Constructors

Definition

Overloads

Name Description
ArcSegment()

Initializes a new instance of the ArcSegment class.

ArcSegment(Point, Size, Double, SweepDirection, Boolean)

Initializes a new instance of the ArcSegment class with the specified arc parameters.

ArcSegment()

Source:
ArcSegment.cs
Source:
ArcSegment.cs
Source:
ArcSegment.cs
Source:
ArcSegment.cs

Initializes a new instance of the ArcSegment class.

public:
 ArcSegment();
public ArcSegment();
Public Sub New ()

Applies to

ArcSegment(Point, Size, Double, SweepDirection, Boolean)

Source:
ArcSegment.cs
Source:
ArcSegment.cs
Source:
ArcSegment.cs
Source:
ArcSegment.cs

Initializes a new instance of the ArcSegment class with the specified arc parameters.

public:
 ArcSegment(Microsoft::Maui::Graphics::Point point, Microsoft::Maui::Graphics::Size size, double rotationAngle, Microsoft::Maui::Controls::SweepDirection sweepDirection, bool isLargeArc);
public ArcSegment(Microsoft.Maui.Graphics.Point point, Microsoft.Maui.Graphics.Size size, double rotationAngle, Microsoft.Maui.Controls.SweepDirection sweepDirection, bool isLargeArc);
new Microsoft.Maui.Controls.Shapes.ArcSegment : Microsoft.Maui.Graphics.Point * Microsoft.Maui.Graphics.Size * double * Microsoft.Maui.Controls.SweepDirection * bool -> Microsoft.Maui.Controls.Shapes.ArcSegment
Public Sub New (point As Point, size As Size, rotationAngle As Double, sweepDirection As SweepDirection, isLargeArc As Boolean)

Parameters

point
Point

The endpoint of the arc.

size
Size

The x- and y-radius of the arc.

rotationAngle
Double

The rotation angle of the ellipse in degrees.

sweepDirection
SweepDirection

The direction in which the arc is drawn.

isLargeArc
Boolean

Whether the arc should be greater than 180 degrees.

Applies to