DocSaveOptions.SavePictureBullet
DocSaveOptions SavePictureBullet property. When false PictureBullet data is not saved to output document. Default value is true.
DocSaveOptions.SavePictureBullet property
When false
, PictureBullet data is not saved to output document. Default value is true
.
public bool SavePictureBullet { get; set; }
Remarks
This option is provided for Word 97, which cannot work correctly with PictureBullet data. To remove PictureBullet data, set the option to “false”.
Examples
Shows how to specify DOC save options.
DocSaveOptions docSaveOptions = new DocSaveOptions();
// When save a document, smaller metafiles are not compressed for performance reasons.
// Some editors such as LibreOffice cannot read uncompressed metafiles.
docSaveOptions.AlwaysCompressMetafiles = false;
// Some word processors, such as Microsoft Word 97, are incompatible with PictureBullet data.
// The options allows converting all image bullet points to ordinary bullet points while saving.
docSaveOptions.SavePictureBullet = false;
// If the document contains a routing slip, we can preserve or skip it while saving by setting this flag.
docSaveOptions.SaveRoutingSlip = false;
Converter.Create()
.From(MyDir + "Simple.docx")
.To(ArtifactsDir + "DocSaveOptions.doc", docSaveOptions)
.Execute();
See Also
- class DocSaveOptions
- namespace Wordize.Saving
- assembly Wordize