IsDecorative

Shape.IsDecorative-Eigenschaft

Holt oder setzt die Option “Als dekorativ markieren” Lese/Schreibe Boolean.

public bool IsDecorative { get; set; }

Beispiele

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

Siehe auch