Options.AutoFormatReplaceHyperlinks property (Word)
True if email addresses, server and share names (also known as UNC paths), and Internet addresses (also known as URLs) are automatically formatted whenever Word AutoFormats a document or range. Read/write Boolean.
Syntax
expression. AutoFormatReplaceHyperlinks
expression A variable that represents an Options object.
Remarks
Word changes any text that looks like an email address, UNC, or URL to a hyperlink. Word doesn't check the validity of the hyperlink.
Example
This example enables replacement of any Internet or network paths with hyperlinks, and then it formats the selection automatically.
Options.AutoFormatReplaceHyperlinks = True
Selection.Range.AutoFormat
This example returns the status of the Internet and network paths with hyperlinks option on the AutoFormat tab in the AutoCorrect dialog box (Tools menu).
Dim blnAutoFormat as Boolean
blnAutoFormat = Options.AutoFormatReplaceHyperlinks
See also
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.