RenderingOptions

RenderingOptions class

Proporciona opciones que controlan cómo se representa una presentación/diapositiva.

public class RenderingOptions : SaveOptions, IRenderingOptions

Constructores

NombreDescripción
RenderingOptions()Constructor por defecto.

Propiedades

NombreDescripción
DefaultRegularFont { get; set; }Devuelve o establece la fuente utilizada en caso de que no se encuentre la fuente fuente. Lectura-escrituraString .
NotesCommentsLayouting { get; }Proporciona opciones que controlan cómo se colocan las notas y los comentarios en el documento exportado.
ProgressCallback { get; set; }Representa un objeto de devolución de llamada para guardar actualizaciones de progreso en porcentaje. VerIProgressCallback .
WarningCallback { get; set; }Devuelve de establece un objeto que recibe advertencias y decide si el proceso de carga continuará o se cancelará. Lectura/escrituraIWarningCallback .

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