IsDecorative

Shape.IsDecorative-Eigenschaft

Ruft die Option ‘Als dekorativ markieren’ ab oder setzt sie, Lese-/Schreib-Boolean.

public bool IsDecorative { get; set; }

Beispiele

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

Siehe auch