GetEffective
IBulletFormat.GetEffective method
Obtiene datos de formato de viñetas efectivos con la herencia aplicada.
public IBulletFormatEffectiveData GetEffective()
Valor_devuelto
Ejemplos
Este ejemplo demuestra cómo obtener algunas propiedades efectivas de formato de viñetas.
[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);
}
}
Ver también
- interface IBulletFormatEffectiveData
- interface IBulletFormat
- espacio de nombres Aspose.Slides
- asamblea Aspose.Slides