Microsoft Visual Studio Tools for the Microsoft Office system (version 3.0)
How to: Reset Ranges in Word Documents
Applies to |
|---|
The information in this topic applies only to the specified Visual Studio Tools for Office projects and versions of Microsoft Office. Project type Microsoft Office version For more information, see Features Available by Application and Project Type. |
Use the SetRange method to resize an existing range in a Microsoft Office Word document.
To reset an existing range
Set an initial range starting with the first seven characters in the document.
The following code example can be used in a document-level customization.
Dim rng As Word.Range = Me.Range(Start:=0, End:=7)
object start = 0;
object end = 7;
Word.Range rng = this.Range(ref start,ref end);
The following code example can be used in an application-level add-in. This code uses the active document.
Dim rng As Word.Range = Me.Application.ActiveDocument.Range(Start:=0, End:=7)
object start = 0;
object end = 7;
Word.Range rng = this.Application.ActiveDocument.Range(
ref start, ref end);
Use SetRange to start the range at the second sentence and end it at the end of the fifth sentence.
rng.SetRange(Start:=Me.Sentences(2).Start, End:=Me.Sentences(5).End)
rng.SetRange(this.Sentences[2].Start, this.Sentences[5].End);
Document-Level Customization Example
To reset an existing range in a document-level customization
Application-Level Add-in Example
To reset an existing range in an application-level add-in
Tasks