我在 Microsoft Word 中自动突出显示文本。
TextSelection[] textSelections = document.FindAllString(this.textBox1.Text, true, true);
foreach(TextSelection selection in textSelections)
{
selection.GetAsTargetRange().CharacterFormat.HighlightColor = Color.Yellow;
}
上述结果:
消息=对象引用未设置为对象的实例
如何解决这个问题?