FillFormat
IBulletFormatEffectiveData.FillFormat property
Возвращает формат заполнения абзаца. Только для чтенияIFillFormatEffectiveData
.
public IFillFormatEffectiveData FillFormat { get; }
Примеры
В этом примере показано получение эффективных данных заполнения пули.
[C#]
using (Presentation pres = new Presentation("SomePresentation.pptx"))
{
// Предположим, что первая фигура на первом слайде — это AutoShape с некоторым текстом...
// Вывод информации о абзацах текста bullets
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();
}
}
Смотрите также
- interface IFillFormatEffectiveData
- interface IBulletFormatEffectiveData
- пространство имен Aspose.Slides
- сборка Aspose.Slides