Subdocument.Level Property

Word Developer Reference

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.

Visual Basic for Applications
  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

See Also