OutputPath

Html5Options.OutputPath property

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

public string OutputPath { get; set; }

示例

示例:

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

另请参阅