Adding text
Assign text to paragraph
ActiveDocument.Paragraphs(1).Range.Text = "New text for Paragraph 1"
After current text, type a new paragraph and format it
With Selection
' Do not accidentally over-write selected text
.Collapse Direction:=wdCollapseStart
'Type new line
.TypeParagraph
.Style = ActiveDocument.Styles(wdStyleNormal)
.TypeText Text:="Your written text"
End With
Comments
Post a Comment