OutputPath

Html5Options.OutputPath-Eigenschaft

Bestimmt, wo externe Ressourcen gespeichert werden sollen. Lese-/Schreib-String.

public string OutputPath { get; set; }

Beispiele

Beispiel:

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

Siehe auch