ArcSegment.Size Property
Definition
Gets or sets the x-radius and y-radius of the arc as a Size structure.
Equivalent WinUI property: Microsoft.UI.Xaml.Media.ArcSegment.Size.
public:
property Size Size { Size get(); void set(Size value); };
Size Size();
void Size(Size value);
public Size Size { get; set; }
var size = arcSegment.size;
arcSegment.size = size;
Public Property Size As Size
<ArcSegment Size="width,height"/>
Property Value
A Size structure that describes the x-radius and y-radius of the elliptical arc. The Size structure's Width value specifies the arc's x-radius; its Height value specifies the arc's y-radius. The default is a Size with value 0,0.