Description
Namespace:
DuoDimension.Databeam
Assembly: Databeam.Word (in Databeam.Word.dll)
Version: 2.1.0.0
CopyC#
CopyVB.NET
True if hyperlinks and paths to all supporting files are automatically updated before you convert the document into a Web page, ensuring that the links are up-to-date at the time the document is saved. False if the links are not updated. The default value is True.
Assembly: Databeam.Word (in Databeam.Word.dll)
Version: 2.1.0.0
Syntax
| C# | Visual Basic |
public bool UpdateLinksOnSave { get; set; }
Public Property UpdateLinksOnSave As Boolean
Examples
DuoDimension.Databeam.Word convert = new DuoDimension.Databeam.Word("*******"); if (convert.IsWordInstalled == true) { convert.CreateFilesFolder = false; convert.UpdateLinksOnSave = true; convert.OpenDocx(docxfile); ... }
Dim convert As New DuoDimension.Databeam.Word("*******") If convert.IsWordInstalled = True Then convert.CreateFilesFolder = False convert.UpdateLinksOnSave = True convert.OpenDocx(docxfile) ... End If
See Also
Word Class
DuoDimension.Databeam Namespace