GetEffective
BulletFormat.GetEffective method
Ruft effektive Aufzählungsformatierungsdaten mit angewendeter Vererbung ab.
public IBulletFormatEffectiveData GetEffective()
Rückgabewert
EINIBulletFormatEffectiveData
.
Beispiele
Dieses Beispiel demonstriert das Abrufen einiger effektiver Aufzählungsformateigenschaften.
[C#]
using (Presentation pres = new Presentation(@"MyPresentation.pptx"))
{
IAutoShape shape = pres.Slides[0].Shapes[0] as IAutoShape;
IBulletFormatEffectiveData effectiveBulletFormat = shape.TextFrame.Paragraphs[0].ParagraphFormat.Bullet.GetEffective();
Console.WriteLine("Bullet type: " + effectiveBulletFormat.Type);
if (effectiveBulletFormat.Type == BulletType.Numbered)
{
Console.WriteLine("Numbered style: " + effectiveBulletFormat.NumberedBulletStyle);
Console.WriteLine("Starting number: " + effectiveBulletFormat.NumberedBulletStartWith);
}
}
Siehe auch
- interface IBulletFormatEffectiveData
- class BulletFormat
- namensraum Aspose.Slides
- Montage Aspose.Slides