首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > VBA >

怎么得到光标标在 Word.Document 中位置

2012-03-06 
如何得到光标标在 Word.Document 中位置?如何得到光标标在Word.Document中位置,我们移动光标位置时在Word

如何得到光标标在 Word.Document 中位置?
如何得到光标标在   Word.Document   中位置,我们移动光标位置时在Word的任务栏,我们可以看到,第几行,第几列,那么这个值能程序的方法取得吗?

[解决办法]
MsgBox "The selection is on page " & _
Selection.Information(wdActiveEndPageNumber) & "; Column " _
& Selection.Information(wdFirstCharacterColumnNumber) & _
"; Line " _
& Selection.Information(wdFirstCharacterLineNumber)

热点排行