ISequence

ISequence 接口

表示序列(特效集合)。

public interface ISequence : IEnumerable<IEffect>

属性

名称描述
AsIEnumerable { get; }允许获取基类 IEnumerable 接口。只读 IEnumerable。
Count { get; }返回序列中特效的数量。只读 Int32。
Item { get; }返回指定索引处的特效。
TriggerShape { get; set; }返回或设置 INTERACTIVE 序列的目标形状。如果序列不是交互式,则返回 null。读/写 IShape

方法

名称描述
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)返回指定形状的特效数组。
Remove(IEffect)从集合中移除指定特效。
RemoveAt(int)从集合中移除指定特效。
RemoveByShape(IShape)移除指定形状的特效。

另请参见