OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 // WARNING: Do not edit - generated code. | |
6 | |
7 interface SVGTextContentElement extends SVGElement, SVGTests, SVGLangSpace, SVGE
xternalResourcesRequired, SVGStylable { | |
8 | |
9 static final int LENGTHADJUST_SPACING = 1; | |
10 | |
11 static final int LENGTHADJUST_SPACINGANDGLYPHS = 2; | |
12 | |
13 static final int LENGTHADJUST_UNKNOWN = 0; | |
14 | |
15 final SVGAnimatedEnumeration lengthAdjust; | |
16 | |
17 final SVGAnimatedLength textLength; | |
18 | |
19 int getCharNumAtPosition(SVGPoint point); | |
20 | |
21 num getComputedTextLength(); | |
22 | |
23 SVGPoint getEndPositionOfChar(int offset); | |
24 | |
25 SVGRect getExtentOfChar(int offset); | |
26 | |
27 int getNumberOfChars(); | |
28 | |
29 num getRotationOfChar(int offset); | |
30 | |
31 SVGPoint getStartPositionOfChar(int offset); | |
32 | |
33 num getSubStringLength(int offset, int length); | |
34 | |
35 void selectSubString(int offset, int length); | |
36 } | |
OLD | NEW |