elemental2.svg.SVGLengthList Maven / Gradle / Ivy
package elemental2.svg;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;
@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public class SVGLengthList {
public int numberOfItems;
public native SVGLength appendItem(SVGLength item);
public native Object clear();
public native SVGLength getItem(double index);
public native SVGLength initialize(SVGLength item);
public native SVGLength insertItemBefore(SVGLength item, int index);
public native SVGLength removeItem(int index);
public native SVGLength replaceItem(SVGLength item, int index);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy