如何使用Word Interop将制表符插入Word文档?

时间:2014-07-18 08:41:03

标签: c# ms-word office-interop

这个问题说明了一切。我试图在我的Word文档中插入一个制表符,该文档是使用Word互操作生成的。通常\t不起作用。

我只想插入一些文字(标签)文字(标签)文字;所以我不是在一行的开头讨论制表符缩进,而是在文本本身。

由于

1 个答案:

答案 0 :(得分:1)

你试过这个:

wordApp.oWord.ActiveWindow.Selection.TypeText("Your custom text");
WordApp.oWord.ActiveWindow.Selection.TypeText("\t");
wordApp.oWord.ActiveWindow.Selection.TypeText("Your next custom text");
WordApp.oWord.ActiveWindow.Selection.TypeText("\t");

或者如果您只想转到文档的末尾:

object missing = Missing.Value;
object what = Word.WdGoToItem.wdGoToLine;
object which = Word.WdGoToDirection.wdGoToLast;
doc.GoTo(ref what, ref which, ref missing, ref missing);

Alexander Kojevnikov