Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在 QTextEdit 中获取光标的行号。但无法获取列号信息。(注意:我在获取行号信息时使用 QTextBlock。)是否有一种简单的方法来获取列号?我该怎么办?尽管我在这里和这里阅读,但 QTextBlock 类仍然让我感到困惑。
这是我对问题的解决方案:
QTextCursor cursor = ui.textEdit->textCursor(); int y = cursor.blockNumber() + 1; int x = cursor.columnNumber() + 1;