GetEffective

Background.GetEffective method

Obtiene antecedentes efectivos con la herencia aplicada.

public IBackgroundEffectiveData GetEffective()

Valor_devuelto

AIBackgroundEffectiveData.

Ejemplos

Este ejemplo demuestra cómo obtener propiedades de fondo efectivas.

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

Ver también