我正在开发一个MS Word加载项。为此,我想知道如何获取当前在word文档中选择的文本,然后对其执行我的应用程序特定操作。
谢谢你的帮助。
答案 0 :(得分:3)
在Visual Studio的Word加载项项目中,在触发事件上使用以下代码来获取所选文本:
string selectText = string.Empty;
Word.Selection wordSelection = this.Application.Selection;
if (wordSelection != null && wordSelection.Range != null)
{
selectText = wordSelection.Text;
}
注意:上述代码尚未经过测试。