Flex:确定 Spark 文本区域在不溢出的情况下可以容纳的行数
我想在 Spark 文本区域中实现分页。为此,我想找出在滚动条出现之前 Spark textArea 可以容纳的行数,并将那么多行输入到文本区域。
I want to implement paging in a spark text area. For that I want to find out the number of lines a spark textArea can hold before the scrollbars appear and just feed that much lines to the text area.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在垂直 ScrollBar 出现之前 TextArea 可以容纳的行数由 heightInLines 属性确定。
该代码
将在变量 number_of_lines 中返回您正在查找的行数,而 textArea 是您正在检查的 TextArea 对象的 id。
The number of lines a TextArea can hold before a vertical ScrollBar appear is determinated by the heightInLines property.
The code
will return inside the variable number_of_lines the number of lines you are looking for, and textArea is the id of the TextArea object you are checking.
文档:
The documentation: