IRenderingOptions
IRenderingOptions interface
提供控制演示文稿/幻灯片呈现方式的选项。
public interface IRenderingOptions : ISaveOptions
特性
姓名 | 描述 |
---|---|
AsISaveOptions { get; } | 返回 ISaveOptions 接口。 只读ISaveOptions 。 |
NotesCommentsLayouting { get; } | 提供控制注释和注释在导出文档中的放置方式的选项。 |
例子
[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);
}
也可以看看
- interface ISaveOptions
- 命名空间 Aspose.Slides.Export
- 部件 Aspose.Slides