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.
...
Dim objShape As Object
Set objShape = ActiveDocument.Shapes.AddTextbox(msoTextOrientationHorizontal, 72, 72, 72, 24)
objShape.TextFrame.TextRange = "One Word"
...
Dim objShape As Object
Set objShape = ActiveDocument.Shapes.AddTextbox(msoTextOrientationHorizontal, 72, 72, 72, 24)
objShape.TextFrame.TextRange = "One Word"
With objShape
.RelativeHorizontalPosition = wdRelativeHorizontalPositionPage
.RelativeVerticalPosition = wdRelativeVerticalPositionPage
.Left = 6
.Top = 6
.Line.ForeColor.RGB = RGB(255, 255, 255)
.ZOrder msoSendBehindText
End With