niagara-ax/decompiled/org/w3c/dom/svg/SVGTextContentElement.java
2026-03-17 13:31:18 -07:00

33 lines
1014 B
Java

package org.w3c.dom.svg;
import org.w3c.dom.DOMException;
import org.w3c.dom.events.EventTarget;
public interface SVGTextContentElement extends SVGElement, SVGTests, SVGLangSpace, SVGExternalResourcesRequired, SVGStylable, EventTarget {
public static final short LENGTHADJUST_SPACING = (short) 1;
public static final short LENGTHADJUST_SPACINGANDGLYPHS = (short) 2;
public static final short LENGTHADJUST_UNKNOWN = (short) 0;
int getCharNumAtPosition(SVGPoint sVGPoint);
float getComputedTextLength();
SVGPoint getEndPositionOfChar(int i) throws DOMException;
SVGRect getExtentOfChar(int i) throws DOMException;
SVGAnimatedEnumeration getLengthAdjust();
int getNumberOfChars();
float getRotationOfChar(int i) throws DOMException;
SVGPoint getStartPositionOfChar(int i) throws DOMException;
float getSubStringLength(int i, int i2) throws DOMException;
SVGAnimatedLength getTextLength();
void selectSubString(int i, int i2) throws DOMException;
}