Class ArcSegment

ArcSegment class

The arc segment. Represents an elliptical arc between two points.

public class ArcSegment

Constructors

NameDescription
ArcSegment()Initializes a new instance of the ArcSegment class.

Properties

NameDescription
IsLargeArc { get; set; }Gets or sets a value indicating whether is large arc. Determines whether the arc is drawn with a sweep of 180 or greater.Can be true or false.
IsStroked { get; set; }Gets or sets a value indicating whether is stroked. Specifies whether the stroke for this segment of the path is drawn. Can be true or false.
Point { get; set; }Gets or sets the point. Specifies the endpoint of the elliptical arc.
RotationAngle { get; set; }Gets or sets the rotation angle. Indicates how the ellipse is rotated relative to the current coordinate system.
Size { get; set; }Gets or sets the size. Specifies the x and y radius of the elliptical arc as an x, y pair.
SweepDirection { get; set; }Gets or sets the sweep direction. Specifies the direction in which the arc is drawn. Valid values are Clockwise and Counterclockwise.

See Also