如何使用c#移动到word中的下一节
我想知道如何使用 C# 移动到文档中的部分。
我的文档中有 3 个或更多部分。我知道如何使用以下内容一次移动一页:
object lineCount = Word.WdUnits.wdLine;
object countPage = 1;
wordApp.Selection.MoveDown(ref lineCount, ref countPage, ref MISSING);
我会尝试循环,直到找到一个新部分:
while() //condition to check if found a new section
{
wordApp.Selection.MoveDown(ref lineCount, ref countPage, ref MISSING);
}
但我不知道应该使用什么条件。
我希望这里有人可以帮助我,我有更好的解决方案请告诉我。tnx
I want to know how can I move to the section in my document using C#.
I have 3 or more sections in my document. I know how to move one page at a time using:
object lineCount = Word.WdUnits.wdLine;
object countPage = 1;
wordApp.Selection.MoveDown(ref lineCount, ref countPage, ref MISSING);
I'll try to loop until I found a new section with this:
while() //condition to check if found a new section
{
wordApp.Selection.MoveDown(ref lineCount, ref countPage, ref MISSING);
}
But I don't know what condition should I use.
I hope someone here can help me, I you have better solution please let me know.tnx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 VBA 代码中,它
甚至更简单。
在 C# 中,您可以使用
您不必为
Word.WdGoToItem.wdGoToSection
创建对象。In VBA code it is
or even simpler
In C# you could use
You don't have to create an object for
Word.WdGoToItem.wdGoToSection
.