Microsoft Word でテキストの強調表示を自動化しています。
TextSelection[] textSelections = document.FindAllString(this.textBox1.Text, true, true);
foreach(TextSelection selection in textSelections)
{
selection.GetAsTargetRange().CharacterFormat.HighlightColor = Color.Yellow;
}
上記の結果は次のとおりです。
Message=オブジェクト参照がオブジェクトのインスタンスに設定されていません
これはどのように修正できますか?