OutputPath
IHtml5Options.OutputPath property
Determines where external resources should be stored. Read/write String.
public string OutputPath { get; set; }
Examples
Example:
[C#]
using (Presentation pres = new Presentation("demo.pptx"))
{
pres.Save("demo-linked-images.html", SaveFormat.Html5, new Html5Options()
{
EmbedImages = false,
OutputPath = "the_desired_path"
});
}
See Also
- interface IHtml5Options
- namespace Aspose.Slides.Export
- assembly Aspose.Slides