Selection.TypeText Method
Word Developer Reference |
Inserts the specified text.
Syntax
expression.TypeText(Text)
expression Required. A variable that represents a Selection object.
Parameters
Name | Required/Optional | Data Type | Description |
---|---|---|---|
Text | Required | String | The text to be inserted. |
Remarks
If the ReplaceSelection property is True, the selection is replaced by the specified text. If ReplaceSelection is False, the specified text is inserted before the selection.
Example
If Word is set so that typing replaces selected text, this example collapses the selection before inserting "Hello." This technique prevents existing document text from being replaced.
Visual Basic for Applications |
---|
|
This example inserts "Title" followed by a new paragraph.
Visual Basic for Applications |
---|
|
See Also