SVGElementInstanceList.h 428 B

123456789101112131415161718192021
  1. /*
  2. http://www.w3.org/TR/SVG/struct.html#InterfaceSVGElementInstanceList
  3. interface SVGElementInstanceList {
  4. readonly attribute unsigned long length;
  5. SVGElementInstance item(in unsigned long index);
  6. */
  7. #import "SVGElement.h"
  8. @class SVGElementInstance;
  9. @interface SVGElementInstanceList : SVGElement
  10. @property(nonatomic, readonly) unsigned long length;
  11. -(SVGElementInstance*) item:(unsigned long) index;
  12. @end