SVGFEConvolveMatrixElement: edgeMode property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

The edgeMode read-only property of the SVGFEConvolveMatrixElement interface reflects the edgeMode attribute of the given <feConvolveMatrix> element. The SVG_EDGEMODE_* constants defined on this interface are represented by the numbers 1 through 3, where the default duplicate is 1, wrap is 2, and none is 3.

Value

Examples

In this example, we retrieve the <feConvolveMatrix> filter element's edgeMode attribute value using the edgeMode property of the SVGFEConvolveMatrixElement interface.

If our SVG contains the following filter:

html
<feConvolveMatrix kernelMatrix="3 0 0 0 0 0 0 0 -4" id="el" edgeMode="wrap" />

We can access the number associated with the enumerated keyword value of the edgeMode attribute of the feConvolveMatrix element.

js
const el = document.getElementById("el");
console.log(el.edgeMode.baseVal); // output: 2

Specifications

Specification
Filter Effects Module Level 1
# dom-svgfeconvolvematrixelement-edgemode

Browser compatibility

BCD tables only load in the browser

See also