Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Selection.GoTo wdGoToBookmark, Name:="test"
Selection.Range.HighlightColorIndex = wdYellow
Selection.GoTo wdGoToBookmark, Name:="TEST"
Selection.TypeText Text:="Type this"
Selection.Range.HighlightColorIndex = wdYellow
Selection.GoTo wdGoToBookmark, Name:="TEST"
Selection.Range.HighlightColorIndex = wdYellow
Selection.TypeText Text:="Type this"
With ActiveDocument.Bookmarks("test").Range
.Text = "This is a test"
.HighlightColorIndex = wdYellow
End With