Sequence

Sequence 类

表示序列(效果的集合)。

public sealed class Sequence : ISequence

属性

NameDescription
Count { get; }返回序列中效果的数量。只读 Int32。
Item { get; }返回指定索引处的效果。
TriggerShape { get; set; }返回或设置 INTERACTIVE 序列的形状目标。如果序列不是交互式,则返回 null。读/写 IShape

方法

NameDescription
AddEffect(IParagraph, EffectType, EffectSubtype, EffectTriggerType)在序列末尾为段落添加新的动画效果。
AddEffect(IShape, EffectType, EffectSubtype, EffectTriggerType)在序列末尾添加新的效果。
AddEffect(IChart, EffectChartMajorGroupingType, int, EffectType, EffectSubtype, EffectTriggerType)在序列末尾为类别或系列添加新的图表动画效果。
AddEffect(IChart, EffectChartMinorGroupingType, int, int, EffectType, EffectSubtype, EffectTriggerType)在序列末尾为类别或系列中的元素添加新的图表动画效果。
Clear()从集合中移除所有效果。
GetCount(IShape)返回指定形状的效果计数。
GetEffectsByParagraph(IParagraph)返回指定段落的效果数组。
GetEffectsByShape(IShape)返回指定形状的效果数组。
GetEnumerator()返回遍历集合的枚举器。
Remove(IEffect)从集合中移除指定的效果。
RemoveAt(int)从集合中移除一个效果。
RemoveByShape(IShape)移除指定形状的效果。

另请参阅