Word for Range对象中的InsertStyleSeparator(不是Selection对象)

时间:2009-01-19 18:14:52

标签: interop automation ms-word

我们目前正在进行一些Word自动化,并且希望能够将Style Separator插入到Range对象中。我们已经找到了如何使用Selection对象(InsertStyleSeparator)来完成它,但似乎无法弄清楚如何使用Range对象。有谁知道如何做到这一点?

到目前为止我找到的相关链接:

1 个答案:

答案 0 :(得分:1)

VBA文档说InsertStyleSeparatorSelection对象的成员。

这意味着你需要一个Selection对象。幸运的是,你可以做到:

SomeRangeObject.Select
Selection.InsertStyleSeparator