SVGTextPositioningElement.h 1009 B

1234567891011121314151617181920212223
  1. /**
  2. http://www.w3.org/TR/2011/REC-SVG11-20110816/text.html#InterfaceSVGTextPositioningElement
  3. interface SVGTextPositioningElement : SVGTextContentElement {
  4. readonly attribute SVGAnimatedLengthList x;
  5. readonly attribute SVGAnimatedLengthList y;
  6. readonly attribute SVGAnimatedLengthList dx;
  7. readonly attribute SVGAnimatedLengthList dy;
  8. readonly attribute SVGAnimatedNumberList rotate;
  9. */
  10. #import "SVGTextContentElement.h"
  11. #import "SVGLength.h"
  12. @interface SVGTextPositioningElement : SVGTextContentElement
  13. @property(nonatomic,strong,readonly) SVGLength* /* FIXME: should be SVGAnimatedLengthList */ x;
  14. @property(nonatomic,strong,readonly) SVGLength* /* FIXME: should be SVGAnimatedLengthList */ y;
  15. @property(nonatomic,strong,readonly) SVGLength* /* FIXME: should be SVGAnimatedLengthList */ dx;
  16. @property(nonatomic,strong,readonly) SVGLength* /* FIXME: should be SVGAnimatedLengthList */ dy;
  17. @property(nonatomic,strong,readonly) SVGLength* /* FIXME: should be SVGAnimatedLengthList */ rotate;
  18. @end