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.
我有一个wxStyledTextCtrl并且我想在文档中找到给定位置的列号。基本上我想要一个功能,GetColumn但我不想扩展标签。
wxStyledTextCtrl
GetColumn
有这样的功能吗?
您可以使用PositionToXY()方法(从基类继承)来获得它,至少在 2.9.4 中它应该可以满足您的需求。如果您使用 2.8 并且它对您不起作用,您应该这样做line = LineFromPosition(pos),然后将pos - PositionFromLine(line)其用作此行中的索引。
PositionToXY()
line = LineFromPosition(pos)
pos - PositionFromLine(line)