Output
WebDocument.Output property
Gibt eine Sammlung von Ausgabeelementen des Dokuments zurück. SchreibgeschütztOutput
.
public Output Output { get; }
Beispiele
[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);
// füge "index.html" zu Ausgabedateien hinzu, verwende die Vorlage "index", um sie zu generieren, und pres-Variable als Modell
document.Output.Add("index.html", "index", pres);
// ... andere Optionen des Dokuments einrichten und dann das Dokument speichern
document.Save();
}
Siehe auch
- class Output
- class WebDocument
- namensraum Aspose.Slides.Export.Web
- Montage Aspose.Slides