OutputPath

Propiedad IHtml5Options.OutputPath

Determina dónde se deben almacenar los recursos externos. Cadena de lectura/escritura.

public string OutputPath { get; set; }

Ejemplos

Ejemplo:

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

Ver También