GetEffective

LineFormat.GetEffective method

Obtiene datos de formato de línea efectivos con la herencia aplicada.

public ILineFormatEffectiveData GetEffective()

Valor_devuelto

AILineFormatEffectiveData.

Ejemplos

Este ejemplo demuestra cómo obtener las propiedades de formato de línea efectivas de la forma.

[C#]
using (Presentation pres = new Presentation(@"MyPresentation.pptx"))
{
	ILineFormatEffectiveData effectiveLineFormat = pres.Slides[0].Shapes[0].LineFormat.GetEffective();

	Console.WriteLine("Style: " + effectiveLineFormat.Style);
	Console.WriteLine("Width: " + effectiveLineFormat.Width);
	Console.WriteLine("Fill type: " + effectiveLineFormat.FillFormat.FillType);
}

Ver también