GetEffective

ParagraphFormat.GetEffective method

Obtiene datos de formato de párrafo efectivo con la herencia aplicada.

public IParagraphFormatEffectiveData GetEffective()

Valor_devuelto

AIParagraphFormatEffectiveData.

Ejemplos

Este ejemplo demuestra cómo obtener algunas propiedades efectivas de formato de párrafo.

[C#]
using (Presentation pres = new Presentation(@"MyPresentation.pptx"))
{
	IAutoShape shape = pres.Slides[0].Shapes[0] as IAutoShape;
	IParagraphFormatEffectiveData effectiveParagraphFormat = shape.TextFrame.Paragraphs[0].ParagraphFormat.GetEffective();

	Console.WriteLine("Text alignment: " + effectiveParagraphFormat.Alignment);
	Console.WriteLine("Indent: " + effectiveParagraphFormat.Indent);
	Console.WriteLine("Bullet type: " + effectiveParagraphFormat.Bullet.Type);
}

Ver también