All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.web.dom.svg.SVGImageElement Maven / Gradle / Ivy

package js.web.dom.svg;

import js.web.canvas.CanvasImageSource;
import org.teavm.jso.JSBody;
import org.teavm.jso.JSProperty;

/**
 * Corresponds to the <image> element.
 */
public interface SVGImageElement extends SVGGraphicsElement, SVGURIReference, CanvasImageSource {
    @JSBody(script = "return SVGImageElement.prototype")
    static SVGImageElement prototype() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSBody(script = "return new SVGImageElement()")
    static SVGImageElement create() {
        throw new UnsupportedOperationException("Available only in JavaScript");
    }

    @JSProperty
    SVGAnimatedLength getHeight();

    @JSProperty
    SVGAnimatedPreserveAspectRatio getPreserveAspectRatio();

    @JSProperty
    SVGAnimatedLength getWidth();

    @JSProperty
    SVGAnimatedLength getX();

    @JSProperty
    SVGAnimatedLength getY();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy