FillFormat
IBulletFormatEffectiveData.FillFormat property
Devuelve el formato de viñetas de un párrafo. Solo lecturaIFillFormatEffectiveData
.
public IFillFormatEffectiveData FillFormat { get; }
Ejemplos
Este ejemplo demuestra la recuperación de datos efectivos de relleno de viñetas.
[C#]
using (Presentation pres = new Presentation("SomePresentation.pptx"))
{
// Supongamos que la primera forma en la primera diapositiva es AutoForma con algo de texto...
// Información de salida sobre viñetas de párrafos de texto
AutoShape autoShape = (AutoShape)pres.Slides[0].Shapes[0];
foreach (Paragraph para in autoShape.TextFrame.Paragraphs)
{
IBulletFormatEffectiveData bulletFormatEffective = para.ParagraphFormat.Bullet.GetEffective();
Console.WriteLine("Bullet type: " + bulletFormatEffective.Type);
if (bulletFormatEffective.Type != BulletType.None)
{
Console.WriteLine("Bullet fill type: " + bulletFormatEffective.FillFormat.FillType);
switch (bulletFormatEffective.FillFormat.FillType)
{
case FillType.Solid:
Console.WriteLine("Solid fill color: " + bulletFormatEffective.FillFormat.SolidFillColor);
break;
case FillType.Gradient:
Console.WriteLine("Gradient stops count: " + bulletFormatEffective.FillFormat.GradientFormat.GradientStops.Count);
foreach (IGradientStopEffectiveData gradStop in bulletFormatEffective.FillFormat.GradientFormat.GradientStops)
Console.WriteLine(gradStop.Position + ": " + gradStop.Color);
break;
case FillType.Pattern:
Console.WriteLine("Pattern style: " + bulletFormatEffective.FillFormat.PatternFormat.PatternStyle);
Console.WriteLine("Fore color: " + bulletFormatEffective.FillFormat.PatternFormat.ForeColor);
Console.WriteLine("Back color: " + bulletFormatEffective.FillFormat.PatternFormat.BackColor);
break;
}
}
Console.WriteLine();
}
}
Ver también
- interface IFillFormatEffectiveData
- interface IBulletFormatEffectiveData
- espacio de nombres Aspose.Slides
- asamblea Aspose.Slides