GetEffective

Background.GetEffective method

Obtient les données d’arrière-plan effectives avec l’héritage appliqué.

public IBackgroundEffectiveData GetEffective()

Return_Value

UNIBackgroundEffectiveData.

Exemples

Cet exemple montre comment obtenir des propriétés d’arrière-plan efficaces.

[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);
}

Voir également