IRenderingOptions
IRenderingOptions interface
Proporciona opciones que controlan cómo se representa una presentación/diapositiva.
public interface IRenderingOptions : ISaveOptions
Propiedades
Nombre | Descripción |
---|---|
AsISaveOptions { get; } | Devuelve la interfaz ISaveOptions. Solo lecturaISaveOptions . |
NotesCommentsLayouting { get; } | Proporciona opciones que controlan cómo se colocan las notas y los comentarios en el documento exportado. |
Ejemplos
[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);
}
Ver también
- interface ISaveOptions
- espacio de nombres Aspose.Slides.Export
- asamblea Aspose.Slides