The information in this article applies to:
SUMMARYThis article provides several Visual Basic for Applications macro examples that use the Selection property and the Range object to insert text into a document. MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty
either expressed or implied, including, but not limited to, the implied warranties of
merchantability and/or fitness for a particular purpose. This article assumes that you
are familiar with the programming language being demonstrated and the tools used to
create and debug procedures. Microsoft support professionals can help explain the functionality
of a particular procedure, but they will not modify these examples to provide added
functionality or construct procedures to meet your specific needs. If you have limited
programming experience, you may want to contact a Microsoft Certified Solution Provider
or the Microsoft fee-based consulting line at (800) 936-5200. For more information about
Microsoft Certified Solution Providers, please see the following page on the World Wide Web:
http://www.microsoft.com/mcsp/For more information about the support options available from Microsoft, please see the following page on the World Wide Web: http://www.microsoft.com/support/supportnet/overview/overview.asp Using the Selection object and the TypeText methodInserts the specified text. If the ReplaceSelection property is True, the selection is replaced by the specified text. If ReplaceSelection property is False, the specified text is inserted before the selection.For more information about ReplaceSelection Property, in the Visual Basic Editor, click Microsoft Visual Basic Help on the Help menu, type ReplaceSelection Property in the Office Assistant or the Answer Wizard, and then click Search to view the topic.
Using the Range objectThe following example replaces the entire contents of a document with the word "Replaced" regardless of the current position of the insertion point.
Using Range or Selection object with the InsertAfter/InsertBefore methodInsertAfter method example:Inserts the specified text at the end of a range or selection. InsertBefore method example:Inserts the specified text at the beginning of a range or selection. After this method is applied, the range or selection expands to include the new text.
Inserting a comment into a document using the Range or Selection objectInserts a comment at the current position of the insertion point.
Inserting a field into a document using the Range or Selection objectInserts a field at the current position of the insertion point.
This example inserts a formula field. The result is formatted with a dollar
sign.
Replicating the text, including the format, of a text rangeThis property returns a Range object with the character formatting and text from the specified range or selection. Paragraph formatting is included in the Range object if there is a paragraph mark in the range or selection. When you set this property, the text in the range is replaced with formatted text. If you do not want to replace the existing text, use the Collapse method before using this property.
Placing text into a header or footerNOTE: The HeaderFooter property requires that the selection be located within a header or footer, or an error will occur.
The following example changes the text of both the primary header and the
primary footer for the first section of the active document.
Using the Range or Selection object to insert a date using the Time fieldThis example inserts a Time field for the current date. A possible result might be "November 18, 1996."
Using the Range or Selection object to insert a new paragraphThis example inserts a new paragraph below the current position of the insertion point.
Using the Range or Selection object to insert a symbolThis example inserts a double-headed arrow at the insertion point.
Using the Range or Selection object to paste from the clipboardThis example inserts text placed on the clipboard at the current position of the insertion point.
For additional information about how to do this in earlier versions of Word, please click the article number below to view the article in the Microsoft Knowledge Base:
Q86079 Inserting Macro Variable Contents into a Document Window For more information about using the Range Object, in the Visual Basic Editor, click Microsoft Visual Basic Help on the Help menu, type Range Object in the Office Assistant or the Answer Wizard, and then click Search to view the topic. For more information about using the Selection Object, in the Visual Basic Editor, click Microsoft Visual Basic Help on the Help menu, type Selection Object in the Office Assistant or the Answer Wizard, and then click Search to view the topic. For more information about using the sample code in this article, please see the following article in the Microsoft Knowledge Base: Q212536 OFF2000: How to Run Sample Code from Knowledge Base Articles REFERENCESFor more information about getting help with Visual Basic for Applications, please see the following article in the Microsoft Knowledge Base: Q226118 OFF2000: Programming Resources for Visual Basic for Applications Additional query words: vb vba vbe
Keywords : kbdta kbdtacode kbmacroexample kbwordvba wd2000 |
Last Reviewed: September 2, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |