在两个Word书签之间选择文本

时间:2013-05-20 09:20:09

标签: c# visual-studio ms-word

我正在试图弄清楚如何以编程方式(C#,Visual Studio中的Office 2010项目)在两个书签之间选择文本,不包括书签本身。我觉得这应该很容易,但我的谷歌搜索技能让我失望!

谢谢!

1 个答案:

答案 0 :(得分:1)

这对我很有用,很容易!

object start = Globals.ThisDocument.bm1.Start + 1;
object end = Globals.ThisDocument.bm2.Start - 1;
Range r = Globals.ThisDocument.Range(ref start, ref end);