获取 PyGTK TextView 的字符长度
我在最大化窗口中有一个 gtk TextView,我想知道在滚动之前一行可以容纳多少个字符。
I have a gtk TextView in a maximized window and I want to know how many characters a line can fit before you have to scroll.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(友好提醒,请停止在评论中添加答案,人们。)
总结一下:
这取决于 TextView 的大小、窗口的大小、字体的大小,并且正如 Alex Martelli 所说,特定的字体和使用字母...“i”是窄字母,“m”是宽字母,因此在给定空间中可以容纳的“i”数量多于“m”数量。
所以,简而言之,没有办法确定。
(Friendly reminder, please stop putting answers in the comments, people.)
To summarize:
It depends on the size of the TextView, size of the window, size of the font, and as Alex Martelli said, the particular font and the usage of letters..."i" is a narrow letter, "m" is a wide letter, thus you can fit more "i"s than you can "m"s in a given space.
So, in short, there is no way to know for sure.