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

com.github.xpenatan.gdx.backends.teavm.dom.HTMLCanvasElementWrapper Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package com.github.xpenatan.gdx.backends.teavm.dom;

import org.teavm.jso.JSObject;

/**
 * @author xpenatan
 */
public interface HTMLCanvasElementWrapper extends HTMLElementWrapper, EventTargetWrapper, JSObject {

    HTMLDocumentWrapper getOwnerDocument();

    int getWidth();

    void setWidth(int width);

    int getHeight();

    void setHeight(int height);

    String toDataURL(String type);

    WebJSObject getContext(String value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy