GetEffective
ParagraphFormat.GetEffective method
Obtient les données de mise en forme de paragraphe effectives avec l’héritage appliqué.
public IParagraphFormatEffectiveData GetEffective()
Return_Value
UNIParagraphFormatEffectiveData
.
Exemples
Cet exemple montre comment obtenir des propriétés de format de paragraphe efficaces.
[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);
}
Voir également
- interface IParagraphFormatEffectiveData
- class ParagraphFormat
- espace de noms Aspose.Slides
- Assemblée Aspose.Slides