SlidesLayoutOptions
SwfOptions.SlidesLayoutOptions Eigenschaft
Ruft den Modus ab oder legt ihn fest, in dem Folien beim Exportieren einer Präsentation auf der Seite platziert werden ISlidesLayoutOptions
. Diese Eigenschaft unterstützt nicht das Zuweisen von Objekten des Typs HandoutLayoutingOptions
.
public ISlidesLayoutOptions SlidesLayoutOptions { get; set; }
Beispiele
Beispiel:
[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
SwfOptions options = new SwfOptions
{
SlidesLayoutOptions = new NotesCommentsLayoutingOptions
{
CommentsPosition = CommentsPositions.Right
}
};
pres.Save("pres.swf", SaveFormat.Swf, options);
}
Siehe Auch
- Schnittstelle ISlidesLayoutOptions
- Klasse SwfOptions
- Namespace Aspose.Slides.Export
- Assembly Aspose.Slides