Description
Namespace:
DuoDimension.Databeam
Assembly: Databeam.Word (in Databeam.Word.dll)
Version: 2.1.0.0
CopyC#
CopyVB.NET
Offen documents have pictures from external files. So document can contains just links to pictures that placed in other folder. Set the True to save pictures with the document. The default value is False.
Assembly: Databeam.Word (in Databeam.Word.dll)
Version: 2.1.0.0
Syntax
| C# | Visual Basic |
public bool SavePictureWithDocument { get; set; }
Public Property SavePictureWithDocument As Boolean
Examples
DuoDimension.Databeam.Word convert = new DuoDimension.Databeam.Word("*******"); if (convert.IsWordInstalled == true) { convert.SavePictureWithDocument = true; convert.OpenDocx(docxfile); convert.DocxToRtf(rtffile); ... }
Dim convert As New DuoDimension.Databeam.Word("*******") If convert.IsWordInstalled = True Then convert.SavePictureWithDocument = True convert.OpenDocx(docxfile) convert.DocxToRtf(rtffile) ... End If
See Also
Word Class
DuoDimension.Databeam Namespace