TinySVGTextAreaElement.h 430 B

12345678910111213141516
  1. //
  2. // TinySVGTextAreaElement.h
  3. // SVGKit-iOS
  4. //
  5. // Created by David Gileadi on 8/26/14.
  6. // Copyright (c) 2014 na. All rights reserved.
  7. //
  8. #import "SVGTextElement.h"
  9. @interface TinySVGTextAreaElement : SVGTextElement
  10. @property(nonatomic,strong,readonly) SVGLength* /* FIXME: should be SVGAnimatedLengthList */ width;
  11. @property(nonatomic,strong,readonly) SVGLength* /* FIXME: should be SVGAnimatedLengthList */ height;
  12. @end