Flex:在 RichEditableText 控件中设置插入符光标位置
是否有一种方法可以在 RichEditableText 控件中设置插入符号位置?
控件的内容可能包含用户必须修复的错误,这些错误通过“下一个/上一个”按钮进行导航,并且在导航过程中,我想将插入符号光标设置到文本中每个错误的末尾。
Is there a method to set the caret position within a RichEditableText control?
The control's contents can contain errors that the user must fix which are navigated though via Next/Previous buttons, and during the navigation I would like to set the caret cursor to the end of each error within the text.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要更改焦点:
textField.setFocus()
然后设置位置:
textField。selectRange()
First you need to change the focus:
textField.setFocus()
Then set the positoin:
textField.selectRange()