PresentationWatermarkSlideOptions

PresentationWatermarkSlideOptions class

Representa opciones al agregar una marca de agua a una diapositiva de un documento de presentación.

public sealed class PresentationWatermarkSlideOptions : PresentationWatermarkBaseSlideOptions

Constructores

Nombre Descripción
PresentationWatermarkSlideOptions() Inicializa una nueva instancia delPresentationWatermarkSlideOptions clase.

Propiedades

Nombre Descripción
AlternativeText { get; set; } Obtiene o establece el texto descriptivo (alternativo) que se asociará con una forma.
Effects { get; set; } Obtiene o establece un valor dePresentationImageEffects or PresentationTextEffects para los efectos que deben aplicarse a la marca de agua.
IsLocked { get; set; } Obtiene o establece un valor que indica si está prohibida la edición de la forma en PowerPoint.
Name { get; set; } Obtiene o establece el nombre de una forma.
ProtectWithUnreadableCharacters { get; set; } Obtiene o establece un valor que indica si los caracteres de la marca de agua de texto están mezclados con caracteres ilegibles.
SlideIndex { get; set; } Obtiene o establece el índice de la diapositiva para agregarle la marca de agua.

Observaciones

Aprende más:

Ejemplos

Agregar marca de agua a una diapositiva particular de una presentación de Power Point.

PresentationLoadOptions loadOptions = new PresentationLoadOptions();
using (Watermarker watermarker = new Watermarker(@"C:\Documents\test.ppt", loadOptions))
{
    TextWatermark watermark = new TextWatermark("Test watermark", new Font("Arial", 36, FontStyle.Bold | FontStyle.Italic));
    watermark.HorizontalAlignment = HorizontalAlignment.Center;
    watermark.VerticalAlignment = VerticalAlignment.Center;

    PresentationWatermarkSlideOptions options = new PresentationWatermarkSlideOptions();
    options.SlideIndex = 0;
    options.IsLocked = false; // por defecto
    options.ProtectWithUnreadableCharacters = false; // por defecto
    options.Name = null; // por defecto
    options.AlternativeText = null; // por defecto

    watermarker.Add(watermark, options);
    watermarker.Save();
}

Ver también