Section.Range property (Word)
Returns a Range object that represents the portion of a document that's contained in the specified object.
Syntax
expression.Range
expression Required. A variable that represents a 'Section' object.
Example
This example inserts text at the end of section one.
Set myRange = ActiveDocument.Sections(1).Range
With myRange
.MoveEnd Unit:=wdCharacter, Count:=-1
.Collapse Direction:=wdCollapseEnd
.InsertParagraphAfter
.InsertAfter "End of section"
End With
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.