1 2 package org.w3c.dom.svg; 3 4 public interface SVGTextPathElement extends 5 SVGTextContentElement, 6 SVGURIReference { 7 public static final short TEXTPATH_METHODTYPE_UNKNOWN = 0; 9 public static final short TEXTPATH_METHODTYPE_ALIGN = 1; 10 public static final short TEXTPATH_METHODTYPE_STRETCH = 2; 11 public static final short TEXTPATH_SPACINGTYPE_UNKNOWN = 0; 13 public static final short TEXTPATH_SPACINGTYPE_AUTO = 1; 14 public static final short TEXTPATH_SPACINGTYPE_EXACT = 2; 15 16 public SVGAnimatedLength getStartOffset( ); 17 public SVGAnimatedEnumeration getMethod( ); 18 public SVGAnimatedEnumeration getSpacing( ); 19 } 20 | Popular Tags |