Output
WebDocument.Output property
Возвращает набор выходных элементов документа. Только чтениеOutput
.
public Output Output { get; }
Примеры
[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
var options = new WebDocumentOptions
{
TemplateEngine = new RazorTemplateEngine(),
OutputSaver = new FileOutputSaver(),
EmbedImages = false
};
WebDocument document = new WebDocument(options);
// добавить «index.html» в выходные файлы, используя шаблон «index» для его создания и переменную pre как model
document.Output.Add("index.html", "index", pres);
// ... настраиваем другие параметры документа и затем сохраняем document
document.Save();
}
Смотрите также
- class Output
- class WebDocument
- пространство имен Aspose.Slides.Export.Web
- сборка Aspose.Slides