Selection.InsertAfter Method
Inserts the specified text at the end of a selection.
Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)
Syntax
'Declaration
Sub InsertAfter ( _
Text As String _
)
'Usage
Dim instance As Selection
Dim Text As String
instance.InsertAfter(Text)
void InsertAfter(
string Text
)
Parameters
- Text
Type: System.String
Required String. The text to be inserted.
Remarks
After this method is applied, the selection expands to include the new text.
If you use this method with a selection that refers to an entire paragraph, the text is inserted after the ending paragraph mark (the text will appear at the beginning of the next paragraph). To insert text at the end of a paragraph, determine the ending point and subtract 1 from this location (the paragraph mark is one character).
However, if the selection ends with a paragraph mark that also happens to be the end of the document, Microsoft Word inserts the text before the final paragraph mark rather than creating a new paragraph at the end of the document.
Also, if the selection is a bookmark, Word inserts the specified text but does not extend the selection or the bookmark to include the new text.