Syntax
expression.Extend(Character) expression An expression that returns a Selection object. Character Optional Variant. The character that the selection is to be extended through. This argument is case sensitive. See Also MoveEndUntil method, MoveEndWhile method. Example This example extends the selection through the next instance of a capital "R" and then decreases the selection by one character.With Selection
.Extend Character:="R"
.MoveLeft Unit:=wdCharacter, Count:=1, Extend:=wdExtend
End With