Class SVGPathSegCurvetoCubicRel
Namespace: Aspose.Html.Dom.Svg.Paths
Assembly: Aspose.HTML.dll (25.4.0)
The SVGPathSegCurvetoCubicRel interface corresponds to a “relative cubic Bézier curveto” (c) path data command.
[DOMName("SVGPathSegCurvetoCubicRel")]
[DOMObject]
[ComVisible(true)]
public class SVGPathSegCurvetoCubicRel : SVGPathSeg, INotifyPropertyChanged, IDisposable
Inheritance
object ← DOMObject ← SVGValueType ← SVGPathSeg ← SVGPathSegCurvetoCubicRel
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
X
The relative X coordinate for the end point of this path segment.
[DOMName("x")]
public float X { get; set; }
Property Value
Exceptions
Code Aspose.Html.Dom.DOMException.NO_MODIFICATION_ALLOWED_ERR. Raised on an attempt to change the value of a read only attribute.
X1
The relative X coordinate for the first control point.
[DOMName("x1")]
public float X1 { get; set; }
Property Value
Exceptions
Code Aspose.Html.Dom.DOMException.NO_MODIFICATION_ALLOWED_ERR. Raised on an attempt to change the value of a read only attribute.
X2
The relative X coordinate for the second control point.
[DOMName("x2")]
public float X2 { get; set; }
Property Value
Exceptions
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
Exceptions
Code Aspose.Html.Dom.DOMException.NO_MODIFICATION_ALLOWED_ERR. Raised on an attempt to change the value of a read only attribute.
Y1
The relative Y coordinate for the first control point.
[DOMName("y1")]
public float Y1 { get; set; }
Property Value
Exceptions
Code Aspose.Html.Dom.DOMException.NO_MODIFICATION_ALLOWED_ERR. Raised on an attempt to change the value of a read only attribute.
Y2
The relative Y coordinate for the second control point.
[DOMName("y2")]
public float Y2 { get; set; }
Property Value
Exceptions
Code Aspose.Html.Dom.DOMException.NO_MODIFICATION_ALLOWED_ERR. Raised on an attempt to change the value of a read only attribute.