|
|
|
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|
public TextBox? getNextLineStartRect() { |
|
|
|
public float? getNextLineStartRectTop() { |
|
|
|
var top = (lineNumber > 0) ? this._lineHeights[lineNumber - 1] : 0; |
|
|
|
var bottom = this._lineHeights[lineNumber]; |
|
|
|
return TextBox.fromLTBD(0, top, 0, bottom, TextDirection.ltr); |
|
|
|
return lineNumber > 0 ? this._lineHeights[lineNumber - 1] : 0; |
|
|
|
} |
|
|
|
|
|
|
|
internal PositionWithAffinity getGlyphPositionAtCoordinate(float dx, float dy) { |
|
|
|