GetEffective
ParagraphFormat.GetEffective method
Ruft effektive Absatzformatierungsdaten mit angewendeter Vererbung ab.
public IParagraphFormatEffectiveData GetEffective()
Rückgabewert
EINIParagraphFormatEffectiveData
.
Beispiele
Dieses Beispiel demonstriert das Abrufen einiger effektiver Absatzformateigenschaften.
[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);
}
Siehe auch
- interface IParagraphFormatEffectiveData
- class ParagraphFormat
- namensraum Aspose.Slides
- Montage Aspose.Slides