DefaultWebOptions.UpdateLinksOnSave Property
Determines whether hyperlinks and paths to all supporting files are automatically updated before you save or publish the presentation as a Web page. Read/write.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
Property UpdateLinksOnSave As MsoTriState
Get
Set
'Usage
Dim instance As DefaultWebOptions
Dim value As MsoTriState
value = instance.UpdateLinksOnSave
instance.UpdateLinksOnSave = value
MsoTriState UpdateLinksOnSave { get; set; }
Property Value
Type: Microsoft.Office.Core.MsoTriState
MsoTriState
Remarks
You should set this property to False if the location where the presentation is saved is different from the final location on the Web server and the supporting files are not available at the first location.
The value of the UpdateLinksOnSave property can be one of these MsoTriState constants.
Constant |
Description |
---|---|
msoFalse |
Hyperlinks and paths to all supporting files are not automatically updated before you save or publish the presentation as a Web page. |
msoTrue |
The default. Hyperlinks and paths to all supporting files are automatically updated before you save or publish the presentation as a Web page, ensuring that the links are up-to-date at the time the presentation is saved. |
Examples
This example specifies that links are not updated before the presentation is saved.
Application.DefaultWebOptions.UpdateLinksOnSave= msoFalse