Reputation: 102
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
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