elemental2.svg.SVGZoomEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elemental2-svg Show documentation
Show all versions of elemental2-svg Show documentation
Thin Java abstractions for the native SVG APIs.
The newest version!
package elemental2.svg;
import elemental2.dom.UIEvent;
import elemental2.dom.UIEventInit;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;
@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public class SVGZoomEvent extends UIEvent {
public double newScale;
public SVGPoint newTranslate;
public double previousScale;
public SVGPoint previousTranslate;
public SVGRect zoomRectScreen;
public SVGZoomEvent() {
// This super call is here only for the code to compile; it is never executed.
super((String) null, (UIEventInit) null);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy