EmailOptions.AutoFormatAsYouTypeApplyBulletedLists property (Word)
True if bullet characters (such as asterisks, hyphens, and greater-than signs) are replaced with bullets. Read/write Boolean.
expression. AutoFormatAsYouTypeApplyBulletedLists
expression A variable that represents an 'EmailOptions' collection.
If set to True, Word replaces bullet character with bullets defined in the Bullets And Numbering dialog box (Format menu) as you type.
This example causes characters to be replaced with bullets when typed in a list.
Options.AutoFormatAsYouTypeApplyBulletedLists = True
This example returns the status of the Automatic bulleted lists option on the AutoFormat As You Type tab in the AutoCorrect dialog box (Tools menu).
Dim blnAutoFormat as Boolean
blnAutoFormat = Options.AutoFormatAsYouTypeApplyBulletedLists
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.