SlidesLayoutOptions
TiffOptions.SlidesLayoutOptions property
Gets or sets the mode in which slides are placed on the page when exporting a presentation ISlidesLayoutOptions
.
public ISlidesLayoutOptions SlidesLayoutOptions { get; set; }
Examples
Example:
[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
TiffOptions options = new TiffOptions
{
SlidesLayoutOptions = new HandoutLayoutingOptions
{
Handout = HandoutType.Handouts4Horizontal
}
};
pres.Save("pres.tiff", SaveFormat.Tiff, options);
}
See Also
- interface ISlidesLayoutOptions
- class TiffOptions
- namespace Aspose.Slides.Export
- assembly Aspose.Slides