IRenderingOptions Interface |
Namespace: Aspose.Slides.Export
The IRenderingOptions type exposes the following members.
Name | Description | |
---|---|---|
![]() | AsISaveOptions |
Returns ISaveOptions interface.
Read-only ISaveOptions.
|
![]() ![]() | DefaultRegularFont |
Returns or sets font used in case source font is not found.
Read-write String.
(Inherited from ISaveOptions.) |
![]() | NotesCommentsLayouting |
Provides options that control how notes and comments is placed in exported document.
|
![]() | ProgressCallback |
Represents a callback object for saving progress updates in percentage.
See IProgressCallback.
(Inherited from ISaveOptions.) |
![]() | WarningCallback |
Returns or sets an object which receives warnings and decides whether loading process will continue or will be aborted.
Read/write IWarningCallback.
(Inherited from ISaveOptions.) |
[C#] using (Presentation pres = new Presentation("pres.pptx")) { IRenderingOptions renderingOpts = new RenderingOptions(); renderingOpts.NotesCommentsLayouting.NotesPosition = NotesPositions.BottomTruncated; pres.Slides[0].GetThumbnail(renderingOpts).Save("pres-Original.png", ImageFormat.Png); renderingOpts.DefaultRegularFont = "Arial Black"; pres.Slides[0].GetThumbnail(renderingOpts).Save("pres-ArialBlackDefault.png", ImageFormat.Png); renderingOpts.DefaultRegularFont = "Arial Narrow"; pres.Slides[0].GetThumbnail(renderingOpts).Save("pres-ArialNarrowDefault.png", ImageFormat.Png); }