SaveOptions.ExportGeneratorName
SaveOptions ExportGeneratorName property. When true causes the name and version of Wordize to be embedded into produced files. Default value is true.
SaveOptions.ExportGeneratorName property
When true
, causes the name and version of Wordize to be embedded into produced files. Default value is true
.
public bool ExportGeneratorName { get; set; }
Examples
Shows how to skip exporting generator name to the output document.
SaveOptions so = SaveOptions.CreateSaveOptions(SaveFormat.Pdf);
so.ExportGeneratorName = false;
Converter.Create()
.From(MyDir + "Simple.docx")
.To(ArtifactsDir + "SaveOptions.ExportGeneratorName.pdf", so)
.Execute();
See Also
- class SaveOptions
- namespace Wordize.Saving
- assembly Wordize