字符串中的索引与 Richtextbox 中的索引
有什么办法可以调和两者吗?即,当我从字符串设置 Richtextform 的文本时,字符串中给定的字符索引与其在文本框中的位置不匹配。
Is there anyway to reconcile the two ? Ie when i set the text of a richtextform from a string, a given characters index in the string does not match the position of it in the textbox.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保 WordWrap 属性为 False。
在很长的行中,您将遇到 RightMargin。它不是无限的,最大右边距取决于字体大小。
Make sure the WordWrap property is False.
On extremely long lines you're going to run into RightMargin. It is not infinite, the maximum right margin depends on the font size.
似乎没问题,这是我的示例文本:
使用代码:
两者都有以下结果: 112
看起来您正在使用 RichTextBox 的 Rtf 属性,该属性包含用于格式化的额外标签?
It seems to be okay, with this my sample text:
Using the code:
Both have results of: 112
It seems you are using the Rtf property of the RichTextBox that contains extra tags for its formatting?