如何从基于C#的Word加载项中的Word文档中选择文本?

时间:2012-06-13 21:05:44

标签: c# ms-word add-in

我正在开发一个MS Word加载项。为此,我想知道如何获取当前在word文档中选择的文本,然后对其执行我的应用程序特定操作。

谢谢你的帮助。

1 个答案:

答案 0 :(得分:3)

在Visual Studio的Word加载项项目中,在触发事件上使用以下代码来获取所选文本:

        string selectText = string.Empty;
        Word.Selection wordSelection = this.Application.Selection;
        if (wordSelection != null && wordSelection.Range != null)
        {
            selectText = wordSelection.Text;
        }

注意:上述代码尚未经过测试。