OutlineDemoteToBody Method
Applies To
Paragraph object, Paragraphs collection object.
Description
Demotes the specified paragraph or paragraphs to body text by applying the Normal style.
Syntax
expression.OutlineDemoteToBody
expression An expression that returns a Paragraph or Paragraphs object.
See Also
OutlineDemote method.
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 the first paragraph in the selection to body text.
ActiveWindow.View.Type = wdOutlineView
Selection.Paragraphs(1).OutlineDemoteToBody