Options.AutoFormatApplyLists Property (Word)

True if styles are automatically applied to lists when Word formats a document or range automatically. Read/write Boolean.

Syntax

expression .AutoFormatApplyLists

expression A variable that represents an Options object.

Example

This example applies styles to any lists in the current selection.

Options.AutoFormatApplyLists = True 
Selection.Range.AutoFormat

This example returns the status of the Lists option on the AutoFormat tab in the AutoCorrect dialog box (Tools menu).

Dim blnAutoFormat as Boolean 
 
blnAutoFormat = Options.AutoFormatApplyLists

See Also

Concepts

Options Object

Options Object Members