0
我目前正試圖產生Selection.SelectCell方法的相反效果。C#中 - 如何取消Word中的表格單元格
這裏是我的代碼:
public void getCellContent()
{
Word.Selection currentSelection = Globals.ThisAddIn.Application.Selection;
currentSelection.SelectCell();
newKey = currentSelection.Text; //global variable
currentSelection.Collapse();
}
Collapse方法將光標定位到單元的開始。 即使我將摺疊方向參數設置爲最後,光標也會進入下一個單元格。
我的目的是能夠保存一個單詞表單元格的內容,每次我輸入它(沒有改變單元格)。
最好的問候,
Chefty。
謝謝,它的工作原理! – Chefty