Table of Contents

Class SVGFEPointLightElement

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The SVGFEPointLightElement interface corresponds to the fePointLight element.

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

Remarks

Constructors

SVGFEPointLightElement()

public SVGFEPointLightElement()

Properties

X

The x read-only property of the SVGFEPointLightElement interface describes the horizontal coordinate of the position of an SVG filter primitive as a SVGAnimatedNumber.

[Value("x")]
public SVGAnimatedNumber X { get; }

Property Value

SVGAnimatedNumber

An SVGAnimatedNumber.

Remarks

It reflects the {{SVGAttr("x")}} attribute of the fePointLight element, which can be used to define the light source in a point light effect. The attribute is a <number>. The default value is 0.

-Y
-Z
-SVGFEDistantLightElement
-SVGFESpotLightElement

See also on MDN

Y

The y read-only property of the SVGFEPointLightElement interface describes the vertical coordinate of the position of an SVG filter primitive as a SVGAnimatedNumber.

[Value("y")]
public SVGAnimatedNumber Y { get; }

Property Value

SVGAnimatedNumber

An SVGAnimatedNumber.

Remarks

It reflects the {{SVGAttr("y")}} attribute of the fePointLight element, which can be used to define the light source in a point light effect. The attribute is a <number>. The default value is 0.

-X
-Z
-SVGFEDistantLightElement
-SVGFESpotLightElement

See also on MDN

Z

The z read-only property of the SVGFEPointLightElement interface describes the z-axis value of the position of an SVG filter primitive as a SVGAnimatedNumber. A positive Z-axis comes out towards the person viewing the content.

[Value("z")]
public SVGAnimatedNumber Z { get; }

Property Value

SVGAnimatedNumber

An SVGAnimatedNumber.

Remarks

It reflects the {{SVGAttr("z")}} attribute of the fePointLight element, which can be used to define the light source in a point light effect. The attribute is a <number>. The default value is 0.

-X
-Y
-SVGFEDistantLightElement
-SVGFESpotLightElement

See also on MDN