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