|
私もなかなか覚えられません。いつもここみて確認しています。
(質問者さんは当然もうみてないだろうけど、自分の勉強のために。)
ht tp://hanatyan.sakura.ne.jp/vbhlp/wordref1.htm
Sub test1()
'5ページ目に移動
Selection.GoTo What:=wdGoToPage, Count:=5
'2行下(3行目)に移動
Selection.Move Unit:=wdLine, Count:=2
' 5文字右に移動
Selection.Move Unit:=wdCharacter, Count:=5
' 3文字右に移動したところまで選択
Selection.MoveRight Unit:=wdCharacter, Count:=3, Extend:=wdExtend
End Sub
Sub test2()
Selection.HomeKey Unit:=wdLine 'Home
Selection.TypeText "行頭"
Selection.EndKey Unit:=wdStory 'Ctrl+End
Selection.TypeText "最後"
End Sub
|
|