DocSaveOptionsSavePictureBullet Property |
Namespace: Aspose.Words.Saving
This option is provided for Word 97, which cannot work correctly with PictureBullet data. To remove PictureBullet data, set the option to "false".
Document doc = new Document(MyDir + "Image bullet points.docx"); // Word 97 cannot work correctly with PictureBullet data // To remove PictureBullet data, set the option to "false" DocSaveOptions saveOptions = new DocSaveOptions(SaveFormat.Doc); saveOptions.SavePictureBullet = false; doc.Save(ArtifactsDir + "DocSaveOptions.PictureBullets.doc", saveOptions);