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

elemental2.svg.SVGZoomEvent Maven / Gradle / Ivy

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