SavePictureBullet
DocSaveOptions.SavePictureBullet property
当错误的
, PictureBullet 数据不保存到输出文档。 默认值为真的
.
public bool SavePictureBullet { get; set; }
评论
此选项是为 Word 97 提供的,它无法正确处理 PictureBullet 数据。 要删除 PictureBullet 数据,请将该选项设置为“false”。
例子
演示如何在保存时从文档中省略 PictureBullet 数据。
Document doc = new Document(MyDir + "Image bullet points.docx");
// 某些文字处理器(例如 Microsoft Word 97)与 PictureBullet 数据不兼容。
// 通过在 SaveOptions 对象中设置一个标志,
// 我们可以在保存时将所有图像项目符号点转换为普通项目符号点。
DocSaveOptions saveOptions = new DocSaveOptions(SaveFormat.Doc);
saveOptions.SavePictureBullet = false;
doc.Save(ArtifactsDir + "DocSaveOptions.PictureBullets.doc", saveOptions);
也可以看看
- class DocSaveOptions
- 命名空间 Aspose.Words.Saving
- 部件 Aspose.Words