用VBA取得WORD当前光标所在位置的行号列号和页数

MsgBox   "The   selection   is   on   page   "   &   _ 
                Selection.Information(wdActiveEndPageNumber)   &   ";   Column   "   _ 
                &   Selection.Information(wdFirstCharacterColumnNumber)   &   _ 
                ";   Line   "   _ 
                &   Selection.Information(wdFirstCharacterLineNumber) 

你可能感兴趣的:(用VBA取得WORD当前光标所在位置的行号列号和页数)