Paragraphs.OutlineDemoteToBody Method (Word)

Demotes the specified paragraph or paragraphs to body text by applying the Normal style.

Syntax

expression .OutlineDemoteToBody

expression Required. A variable that represents a Paragraphs collection.

Example

This example demotes the selected paragraphs to body text by applying the Normal style.

Selection.Paragraphs.OutlineDemoteToBody

This example switches the active window to outline view and demotes all selected paragraphs to body text.

ActiveDocument.ActiveWindow.View.Type = wdOutlineView 
Selection.Paragraphs.OutlineDemoteToBody

See Also

Concepts

Paragraphs Object Members

Paragraphs Collection Object