Description
Namespace:
DuoDimension.Databeam
Assembly: Databeam.Word (in Databeam.Word.dll)
Version: 2.1.0.0
CopyC#
CopyVB.NET
True if all supporting files, such as background textures and graphics, are organized in a separate folder when you convert Word Document to HTML Web page. False if supporting files are saved in the same folder as the HTML page. The default value is False.
Assembly: Databeam.Word (in Databeam.Word.dll)
Version: 2.1.0.0
Syntax
| C# | Visual Basic |
public bool CreateFilesFolder { get; set; }
Public Property CreateFilesFolder 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