在表格中随机选择单元格

时间:2012-09-27 12:02:02

标签: c# ms-word

我正在使用C#在VS2010中使用带状 MS Office应用程序。

当我在文档中有一个表格时,我想在按下功能区上的按钮时在表格的随机选择的单元格中添加一些文本。

问题是,每当我选择随机数量的单元格时WrdApp.ActiveWindow.Selection.Cells只获得最后选择的单元格。

以下是代码:

  foreach (Cell myCell in WrdApp.ActiveWindow.Selection.Cells)
  {
      myCell.Range.Text = "text" + myCell.Range.Text
  }

0 个答案:

没有答案