OutputPath

Html5Options.OutputPath property

Determina dónde deben almacenarse los recursos externos. String 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 = true,  
      OutputPath = "the_desired_path"  
  });  
}  

Véase también