GetEffective
Background.GetEffective method
Ruft effektive Hintergrunddaten mit angewendeter Vererbung ab.
public IBackgroundEffectiveData GetEffective()
Rückgabewert
Beispiele
Dieses Beispiel zeigt, wie man effektive Hintergrundeigenschaften erhält.
[C#]
using (Presentation pres = new Presentation(@"MyPresentation.pptx"))
{
IBackgroundEffectiveData effectiveBackground = pres.Slides[0].Background.GetEffective();
Console.WriteLine("Background fill type: " + effectiveBackground.FillFormat.FillType);
Console.WriteLine("Any effects applied: " + !effectiveBackground.EffectFormat.IsNoEffects);
}
Siehe auch
- interface IBackgroundEffectiveData
- class Background
- namensraum Aspose.Slides
- Montage Aspose.Slides