使用 Selection 对象从 Word 文档中获取一行
如何使用 VBA 中的 Selection 对象从 Word 文档中获取一行?像这样的事情:
Selection.MoveDown Unit:=wdLine, Count:=15
'print the 15th line here
编辑:当我这样做时:
Selection.MoveDown Unit:=wdLine, Count:=15
MsgBox (Selection.Text)
它仅打印该行的第一个字符。
How can I get a line from a Word document using the Selection object in VBA? Something like this:
Selection.MoveDown Unit:=wdLine, Count:=15
'print the 15th line here
EDIT: When i do:
Selection.MoveDown Unit:=wdLine, Count:=15
MsgBox (Selection.Text)
It prints only the first character of the line.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要扩大选择范围:
You need to expand the selection: