IHtml5Options
IHtml5Options interface
表示 HTML5 导出选项。
public interface IHtml5Options : ISaveOptions
特性
姓名 | 描述 |
---|---|
AnimateShapes { get; set; } | 返回或设置形状动画选项。 读/写Boolean。 |
AnimateTransitions { get; set; } | 返回或设置过渡动画选项。 读/写Boolean。 |
AsISaveOptions { get; } | 返回 ISaveOptions 接口。 只读ISaveOptions 。 |
例子
示例:
[C#]
using (Presentation pres = new Presentation("demo.pptx"))
{
pres.Save("demo-animate-shapes-and-transitions.html", SaveFormat.Html5, new Html5Options()
{
AnimateShapes = true,
AnimateTransitions = true
});
}
也可以看看
- interface ISaveOptions
- 命名空间 Aspose.Slides.Export
- 部件 Aspose.Slides