StyledText количество видимых строк - PullRequest
0 голосов
/ 04 ноября 2011

Я хотел бы знать, сколько строк на самом деле отображается в StyledText.Это возможно?

Спасибо.

1 Ответ

4 голосов
/ 04 ноября 2011

Попробуйте этот код:

// The index of the last (possibly only partially) visible line of the widget
int bottomIndex = JFaceTextUtil.getPartialBottomIndex((StyledText)widget);
// The index of the first (possibly only partially) visible line of the widget
int topIndex = JFaceTextUtil.getPartialTopIndex((StyledText)widget);


int visibleLines = bottomIndex - topIndex;
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...