phillip3196772
phillip3196772

Reputation: 102

Is it possible to modify Outlook's AutoFormat from VBA?

basically, I want to be able to edit the AutoFormatReplaceHyperlinks property so that I can click on links in the Reading Pane. I know I can do this manually, but I need a repeatable programmatic solution I can deploy to multiple users.

I know it can be done in Word, but I can't seem to figure out how to do it in Outlook.

Upvotes: 0

Views: 436

Answers (1)

Dmitry Streblechenko
Dmitry Streblechenko

Reputation: 66255

If you can do this through the Word object model, you should be able to access the Word's Document object of the message displayed in the preview pane using Application.ActiveExplorer.Selection.Item(1).GetInspector.WordEditor

Upvotes: 1

Related Questions