2012-06-13 49 views

回答

3

在Visual Studio使用您觸發事件下面的代碼來獲取所選文本的Word加載項目:

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

注:上面的代碼沒有經過測試。

相關問題