SVGPathElement.PathSegList

SVGPathElement.PathSegList property

Provides access to the base (i.e., static) contents of the ‘d’ attribute in a form which matches one-for-one with SVG’s syntax. Thus, if the ‘d’ attribute has an “absolute moveto (M)” and an “absolute arcto (A)” command, then pathSegList will have two entries: a SVG_PATHSEG_MOVETO_ABS and a SVG_PATHSEG_ARC_ABS.

public SVGPathSegList PathSegList { get; set; }

Property Value

The path segment list.

See Also