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