DocSaveOptionsSavePictureBullet Property

When false, PictureBullet data is not saved to output document. Default value is true.

Namespace:  Aspose.Words.Saving
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public bool SavePictureBullet { get; set; }

Property Value

Type: Boolean
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 remove PictureBullet data from the document.
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);
See Also