AnimateTransitions

IHtml5Options.AnimateTransitions property

返回或设置过渡动画选项。可读写布尔值。

public bool AnimateTransitions { get; set; }  

示例

示例:

[C#]  
using (Presentation pres = new Presentation("demo.pptx"))  
{  
  pres.Save("demo-animate-transitions.html", SaveFormat.Html5, new Html5Options()  
  {  
      AnimateTransitions = true  
  });  
}  

另见