FillFormat
IBulletFormatEffectiveData.FillFormat property
Gibt das Aufzählungsfüllformat eines Absatzes zurück. SchreibgeschütztIFillFormatEffectiveData
.
public IFillFormatEffectiveData FillFormat { get; }
Beispiele
Dieses Beispiel demonstriert das Abrufen der Fülleffektivdaten eines Aufzählungszeichens.
[C#]
using (Presentation pres = new Presentation("SomePresentation.pptx"))
{
// Angenommen, die erste Form auf der ersten Folie ist AutoShape mit etwas Text ...
// Informationen über die Aufzählungszeichen von Textabsätzen ausgeben
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();
}
}
Siehe auch
- interface IFillFormatEffectiveData
- interface IBulletFormatEffectiveData
- namensraum Aspose.Slides
- Montage Aspose.Slides