IsDecorative

Propiedad Shape.IsDecorative

Obtiene o establece la opción ‘Marcar como decorativa’ Lectura/escritura Booleana.

public bool IsDecorative { get; set; }

Ejemplos

using (Presentation pres = new Presentation("sample.pptx"))
{
    pres.Slides[0].Shapes[0].IsDecorative = true;
}

Véase también