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

See also

Subdocument Object

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.