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.
欢迎使用 C++ 或 C# 解决方案。
我在 RichEditCtrl 中显示的文本中有一个字符的索引。我需要知道它的格式(是粗体、红色等)而不选择它。
谢谢你们。
使用基本的 CRichEditCtrl,如果不选择它,就无法获得 char 的格式。如果不想改变选区,那么保存当前选区的开始/结束位置,选择你想要的格式的字符,调用CRichEditCtrl::GetSelectionCharFormat(),然后恢复富编辑原来的选区控制。