SlidesLayoutOptions
Propriété SwfOptions.SlidesLayoutOptions
Obtient ou définit le mode dans lequel les diapositives sont placées sur la page lors de l’exportation d’une présentation ISlidesLayoutOptions
. Cette propriété ne prend pas en charge l’attribution d’objets de type HandoutLayoutingOptions
.
public ISlidesLayoutOptions SlidesLayoutOptions { get; set; }
Exemples
Exemple :
[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);
}
Voir aussi
- interface ISlidesLayoutOptions
- classe SwfOptions
- namespace Aspose.Slides.Export
- assembly Aspose.Slides