RefreshThumbnail
PptxOptions.RefreshThumbnail 属性
指定演示文稿缩略图是否将被刷新。可读可写的布尔值。默认值为 true。
public bool RefreshThumbnail { get; set; }
备注
当选项值为 true 时,将生成新的缩略图。
当选项值为 false 时,当前缩略图将按原样保存。
示例
示例:
[C#]
using (Presentation pres = new Presentation("demo.pptx"))
{
pres.Save("result_with_old_thumbnail.pptx", SaveFormat.Pptx, new PptxOptions()
{
RefreshThumbnail = false
});
}
另请参阅
- class PptxOptions
- namespace Aspose.Slides.Export
- assembly Aspose.Slides