This example moves the end of the selection one character backward (the selection size is reduced by one character). A space is considered a character.
Selection.MoveEnd Unit:=wdCharacter, Count:=-1
This example moves the end of the selection to the end of the line (the selection is extended to the end of the line).
Selection.MoveEnd Unit:=wdLine, Count:=1
This example sets myRange
to be equal to the second word in the active document. The MoveEnd method is used to move the ending position of myRange
(a range object) forward one word. After this macro is run, the second and third words in the document are selected.
If ActiveDocument.Words.Count >= 3 Then
Set myRange = ActiveDocument.Words(2)
With myRange
.MoveEnd Unit:=wdWord, Count:=1
.Select
End With
End If