OutputPath

Html5Options.OutputPath свойство

Определяет, где должны храниться внешние ресурсы. Читаемая/записываемая Строка.

public string OutputPath { get; set; }

Примеры

Пример:

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

См. также