Returns a vector of bounding boxes that enclose all text between start and end char indices, including start and excluding end.
(int start, int end, RectHeightMode rectHeightMode, RectWidthMode rectWidthMode)
| 113 | * start and end char indices, including start and excluding end. |
| 114 | */ |
| 115 | public TextBox[] getRectsForRange(int start, int end, RectHeightMode rectHeightMode, RectWidthMode rectWidthMode) { |
| 116 | try { |
| 117 | Stats.onNativeCall(); |
| 118 | return _nGetRectsForRange(_ptr, start, end, rectHeightMode.ordinal(), rectWidthMode.ordinal()); |
| 119 | } finally { |
| 120 | ReferenceUtil.reachabilityFence(this); |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | public TextBox[] getRectsForPlaceholders() { |
| 125 | try { |
no test coverage detected