Class Options (PowerPoint VBA)
The class Options represents application options in Microsoft PowerPoint. To use a Options class variable it first needs to be instantiated, for example
Dim opts as Options
Set opts = Application.Options
DisplayPasteOptions
Determines whether Microsoft PowerPoint displays the Paste Options button, which appears directly under newly pasted text.
The value of the DisplayPasteOptions property can be one of these MsoTriState constants.
Application.Options.DisplayPasteOptions = msoTrue
ShowCoauthoringMergeChanges
Returns or sets the show changes mode.
Set this value to msoTrue for the application to show changes. The default value is msoFalse.
Application.Options.ShowCoauthoringMergeChanges = True