在 Visual Studio 的 Word 加载项项目中,在触发事件上使用以下代码来获取选定的文本:
string selectText = string.Empty;
Word.Selection wordSelection = this.Application.Selection;
if (wordSelection != null && wordSelection.Range != null)
{
selectText = wordSelection.Text;
}
注意:以上代码未经测试。