我想在我的 RichTextBox 中隐藏部分文本。我知道 \v 是隐藏部分的开始。但是我如何取消隐藏?例如,如果我想在字符串“hello big world”中隐藏单词“big”,以便“hello world”可见:
text : "hello big world"
RTF so far : "hello \v big world"
result : "hello "
wanted result -> : "hello world"
doesn't work : "hello \v big\v world"
有办法吗?