1 2 package org.w3c.dom.svg; 3 4 public interface SVGMarkerElement extends 5 SVGElement, 6 SVGLangSpace, 7 SVGExternalResourcesRequired, 8 SVGStylable, 9 SVGFitToViewBox { 10 public static final short SVG_MARKERUNITS_UNKNOWN = 0; 12 public static final short SVG_MARKERUNITS_USERSPACEONUSE = 1; 13 public static final short SVG_MARKERUNITS_STROKEWIDTH = 2; 14 public static final short SVG_MARKER_ORIENT_UNKNOWN = 0; 16 public static final short SVG_MARKER_ORIENT_AUTO = 1; 17 public static final short SVG_MARKER_ORIENT_ANGLE = 2; 18 19 public SVGAnimatedLength getRefX( ); 20 public SVGAnimatedLength getRefY( ); 21 public SVGAnimatedEnumeration getMarkerUnits( ); 22 public SVGAnimatedLength getMarkerWidth( ); 23 public SVGAnimatedLength getMarkerHeight( ); 24 public SVGAnimatedEnumeration getOrientType( ); 25 public SVGAnimatedAngle getOrientAngle( ); 26 27 public void setOrientToAuto ( ); 28 public void setOrientToAngle ( SVGAngle angle ); 29 } 30 | Popular Tags |