Expand Minimize
This topic has not yet been rated - Rate this topic

Selection.NextSubdocument Method (Word)

Moves the selection to the next subdocument.

expression .NextSubdocument

expression Required. A variable that represents a Selection object.

If there isn't another subdocument, an error occurs.

This example switches the active document to master document view and selects the first subdocument.

If ActiveDocument.Subdocuments.Count >= 1 Then 
 ActiveDocument.ActiveWindow.View.Type = wdMasterView 
 Selection.HomeKey unit:=wdStory, Extend:=wdMove 
 Selection.NextSubdocument 
End If
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.