GetEffective

BulletFormat.GetEffective method

Obtient les données de formatage de puce efficaces avec l’héritage appliqué.

public IBulletFormatEffectiveData GetEffective()

Return_Value

UNIBulletFormatEffectiveData.

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