Class SVGPathSegArcRel

Class SVGPathSegArcRel

Namespace: Aspose.Html.Dom.Svg.Paths
Assembly: Aspose.HTML.dll (25.2.0)

The SVGPathSegArcRel interface corresponds to a “relative arcto” (a) path data command.

[DOMName("SVGPathSegArcRel")]
[DOMObject]
[ComVisible(true)]
public class SVGPathSegArcRel : SVGPathSeg, INotifyPropertyChanged, IDisposable

Inheritance

objectDOMObjectSVGValueTypeSVGPathSegSVGPathSegArcRel

Implements

INotifyPropertyChanged, IDisposable

Inherited Members

SVGPathSeg.PATHSEG_UNKNOWN, SVGPathSeg.PATHSEG_CLOSEPATH, SVGPathSeg.PATHSEG_MOVETO_ABS, SVGPathSeg.PATHSEG_MOVETO_REL, SVGPathSeg.PATHSEG_LINETO_ABS, SVGPathSeg.PATHSEG_LINETO_REL, SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS, SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL, SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS, SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL, SVGPathSeg.PATHSEG_ARC_ABS, SVGPathSeg.PATHSEG_ARC_REL, SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_ABS, SVGPathSeg.PATHSEG_LINETO_HORIZONTAL_REL, SVGPathSeg.PATHSEG_LINETO_VERTICAL_ABS, SVGPathSeg.PATHSEG_LINETO_VERTICAL_REL, SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS, SVGPathSeg.PATHSEG_CURVETO_CUBIC_SMOOTH_REL, SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS, SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL, SVGPathSeg.PathSegType, SVGPathSeg.PathSegTypeAsLetter, SVGValueType.Dispose(), SVGValueType.Dispose(bool), DOMObject.GetPlatformType(), object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Properties

Angle

The rotation angle in degrees for the ellipse’s x-axis relative to the x-axis of the user coordinate system.

[DOMName("angle")]
public float Angle { get; set; }

Property Value

float

Exceptions

DOMException

Code Aspose.Html.Dom.DOMException.NO_MODIFICATION_ALLOWED_ERR. Raised on an attempt to change the value of a read only attribute.

LargeArcFlag

The value of the large-arc-flag parameter.

[DOMName("largeArcFlag")]
public bool LargeArcFlag { get; set; }

Property Value

bool

Exceptions

DOMException

Code Aspose.Html.Dom.DOMException.NO_MODIFICATION_ALLOWED_ERR. Raised on an attempt to change the value of a read only attribute.

R1

The x-axis radius for the ellipse (i.e., r1).

[DOMName("r1")]
public float R1 { get; set; }

Property Value

float

Exceptions

DOMException

Code Aspose.Html.Dom.DOMException.NO_MODIFICATION_ALLOWED_ERR. Raised on an attempt to change the value of a read only attribute.

R2

The y-axis radius for the ellipse (i.e., r2).

[DOMName("r2")]
public float R2 { get; set; }

Property Value

float

Exceptions

DOMException

Code Aspose.Html.Dom.DOMException.NO_MODIFICATION_ALLOWED_ERR. Raised on an attempt to change the value of a read only attribute.

SweepFlag

The value of the sweep-flag parameter.

[DOMName("sweepFlag")]
public bool SweepFlag { get; set; }

Property Value

bool

Exceptions

DOMException

Code Aspose.Html.Dom.DOMException.NO_MODIFICATION_ALLOWED_ERR. Raised on an attempt to change the value of a read only attribute.

X

The relative X coordinate for the end point of this path segment.

[DOMName("x")]
public float X { get; set; }

Property Value

float

Exceptions

DOMException

Code Aspose.Html.Dom.DOMException.NO_MODIFICATION_ALLOWED_ERR. Raised on an attempt to change the value of a read only attribute.

Y

The relative Y coordinate for the end point of this path segment.

[DOMName("y")]
public float Y { get; set; }

Property Value

float

Exceptions

DOMException

Code Aspose.Html.Dom.DOMException.NO_MODIFICATION_ALLOWED_ERR. Raised on an attempt to change the value of a read only attribute.

See Also

SVGPathSeg