home *** CD-ROM | disk | FTP | other *** search
- ' The .Type command is a shortcut to type text into the document
- .Type("Hello World.")
- .Type("[Enter] Line 1 [Enter]")
- .Type("[CtrlHome][ShiftCtrlEnd]")
- .Text.Font.Bold = True
- .Type("[CtrlEnd]")
-
- ' Or
- ' access the .Text object at the current location
- .Text.InsertText("Hello")
- .Text.InsertText("World")
-