Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SVGMarkerElement

interface SVGMarkerElement extends SVGElement, SVGFitToViewBox {
readonly markerHeight: SVGAnimatedLength;
readonly markerUnits: SVGAnimatedEnumeration;
readonly markerWidth: SVGAnimatedLength;
readonly orientAngle: SVGAnimatedAngle;
readonly orientType: SVGAnimatedEnumeration;
readonly refX: SVGAnimatedLength;
readonly refY: SVGAnimatedLength;
readonly SVG_MARKER_ORIENT_ANGLE: number;
readonly SVG_MARKER_ORIENT_AUTO: number;
readonly SVG_MARKER_ORIENT_UNKNOWN: number;
readonly SVG_MARKERUNITS_STROKEWIDTH: number;
readonly SVG_MARKERUNITS_UNKNOWN: number;
readonly SVG_MARKERUNITS_USERSPACEONUSE: number;
addEventListener<K extends keyof SVGElementEventMap>(
type: K,
listener: (this: SVGMarkerElement, ev: SVGElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void;
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void;
removeEventListener<K extends keyof SVGElementEventMap>(
type: K,
listener: (this: SVGMarkerElement, ev: SVGElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void;
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void;
setOrientToAngle(angle: SVGAngle): void;
setOrientToAuto(): void;
}
var SVGMarkerElement: {
prototype: SVGMarkerElement;
readonly SVG_MARKERUNITS_STROKEWIDTH: number;
readonly SVG_MARKERUNITS_UNKNOWN: number;
readonly SVG_MARKERUNITS_USERSPACEONUSE: number;
readonly SVG_MARKER_ORIENT_ANGLE: number;
readonly SVG_MARKER_ORIENT_AUTO: number;
readonly SVG_MARKER_ORIENT_UNKNOWN: number;
}
;

§Extends

§Properties

§
readonly markerHeight: SVGAnimatedLength
[src]
§
readonly markerUnits: SVGAnimatedEnumeration
[src]
§
readonly markerWidth: SVGAnimatedLength
[src]
§
readonly orientAngle: SVGAnimatedAngle
[src]
§
readonly orientType: SVGAnimatedEnumeration
[src]
§
readonly SVG_MARKER_ORIENT_ANGLE: number
[src]
§
readonly SVG_MARKER_ORIENT_AUTO: number
[src]
§
readonly SVG_MARKER_ORIENT_UNKNOWN: number
[src]
§
readonly SVG_MARKERUNITS_STROKEWIDTH: number
[src]
§
readonly SVG_MARKERUNITS_UNKNOWN: number
[src]
§
readonly SVG_MARKERUNITS_USERSPACEONUSE: number
[src]

§Methods

§
addEventListener<K extends keyof SVGElementEventMap>(
type: K,
listener: (this: SVGMarkerElement, ev: SVGElementEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void
[src]
§
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void
[src]
§
removeEventListener<K extends keyof SVGElementEventMap>(
type: K,
listener: (this: SVGMarkerElement, ev: SVGElementEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void
[src]
§
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void
[src]
§
setOrientToAngle(angle: SVGAngle): void
[src]
§
setOrientToAuto(): void
[src]