OutputPath

IHtml5Options.OutputPath 属性

确定外部资源应该存储的位置。可读写字符串。

public string OutputPath { get; set; }

示例

示例:

[C#]
using (Presentation pres = new Presentation("demo.pptx"))
{
  pres.Save("demo-linked-images.html", SaveFormat.Html5, new Html5Options()
  {
      EmbedImages = false,
      OutputPath = "the_desired_path"
  });
}

另见