Table of Contents

Class SVGClipPathElement

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The SVGClipPathElement interface provides access to the properties of clipPath elements, as well as methods to manipulate them.

[Value("SVGClipPathElement")]
public class SVGClipPathElement : SVGElement, ElementCSSInlineStyle, GlobalEventHandlers, SVGElementInstance, HTMLOrSVGElement
Inheritance
SVGClipPathElement
Implements
Inherited Members

Remarks

Constructors

SVGClipPathElement()

public SVGClipPathElement()

Properties

ClipPathUnits

The read-only clipPathUnits property of the SVGClipPathElement interface reflects the {{SVGAttr("clipPathUnits")}} attribute of a {{SVGElement("clipPath")}} element which defines the coordinate system to use for the content of the element.

[Value("clipPathUnits")]
public SVGAnimatedEnumeration ClipPathUnits { get; }

Property Value

SVGAnimatedEnumeration

An SVGAnimatedEnumeration representing the coordinate system. The possible values are defined in the SVGUnitTypes interface:

Remarks

NOTE

Although this property is read-only, it is merely a container for two values you can modify, BaseVal and AnimVal.

-clipPathUnits
-clipPath

See also on MDN

Transform

The read-only transform property of the SVGClipPathElement interface reflects the {{SVGAttr("transform")}} attribute of a {{SVGElement("clipPath")}} element, that is a list of transformations applied to the element.

[Value("transform")]
public SVGAnimatedTransformList Transform { get; }

Property Value

SVGAnimatedTransformList

An SVGTransformList.

Remarks