OutputPath

Propriété IHtml5Options.OutputPath

Détermine où les ressources externes doivent être stockées. Chaîne lisible/écrivable.

public string OutputPath { get; set; }

Exemples

Exemple:

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

Voir Aussi