word中替换被批注的正文的值
try
{
Word.Document document = (Word.Document)dsoWord.ActiveDocument;
foreach (Word.Comment var in document.Comments)
{
var.Scope.Text = "替换被批注正文的值";
//var.Range.Text = textBox1.Text;//替换批注的值
}
document.Save();
}
catch (Exception)
{
MessageBox.Show(this, "替换值失败!", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
时间: 2024-10-27 18:19:01