Subdocument.Level Property (Word)
Returns the heading level used to create the subdocument. Read-only Long.
Syntax
expression .Level
expression Required. A variable that represents a Subdocument object.
Example
This example looks through each subdocument in the active document and displays the subdocument's heading level.
i = 1
If ActiveDocument.Subdocuments.Count > = 1 Then
For each s in ActiveDocument.Subdocuments
MsgBox "The heading level for SubDoc " & i _
& " is " & s.Level
i = i + 1
Next s
Else
MsgBox "There are no subdocuments defined."
End If