AddEffect

AddEffect(IShape, EffectType, EffectSubtype, EffectTriggerType)

在序列末尾添加新效果。

public IEffect AddEffect(IShape shape, EffectType effectType, EffectSubtype subtype, 
    EffectTriggerType triggerType)
范围类型描述
shapeIShape形状对象IShape用于添加效果
effectTypeEffectType动画效果的类型EffectType
subtypeEffectSubtype动画效果的子类型EffectSubtype
triggerTypeEffectTriggerType效果的触发类型EffectTriggerType

返回值

新效果对象IEffect

也可以看看


AddEffect(IParagraph, EffectType, EffectSubtype, EffectTriggerType)

为段落添加新的动画效果到序列的末尾。

public IEffect AddEffect(IParagraph paragraph, EffectType effectType, EffectSubtype subtype, 
    EffectTriggerType triggerType)
范围类型描述
paragraphIParagraph段落对象IParagraph
effectTypeEffectType动画效果的类型EffectType
subtypeEffectSubtype动画效果的子类型EffectSubtype
triggerTypeEffectTriggerType效果的触发类型EffectTriggerType

返回值

新效果对象IEffect

例子

[C#]
using(Presentation presentation = new Presentation(path + "input.pptx"))
{        
   // 选择段落添加 effect
   IAutoShape autoShape = (IAutoShape)presentation.Slides[0].Shapes[0];
   IParagraph paragraph = autoShape.TextFrame.Paragraphs[0];

    // 为选中的段落添加飞行动画效果
   IEffect effect = presentation.Slides[0].Timeline.MainSequence.AddEffect(
   paragraph, EffectType.Fly, EffectSubtype.Left, EffectTriggerType.OnClick);
}

也可以看看


AddEffect(IChart, EffectChartMajorGroupingType, int, EffectType, EffectSubtype, EffectTriggerType)

将类别或系列的新图表动画效果添加到序列末尾。

public IEffect AddEffect(IChart chart, EffectChartMajorGroupingType type, int index, 
    EffectType effectType, EffectSubtype subtype, EffectTriggerType triggerType)
范围类型描述
chartIChart图表对象IChart
typeEffectChartMajorGroupingType动画效果的类型EffectChartMinorGroupingType
indexInt32IndexInt32
effectTypeEffectType动画效果的类型EffectType
subtypeEffectSubtype动画效果的子类型EffectSubtype
triggerTypeEffectTriggerType效果的触发类型EffectTriggerType

返回值

新效果对象IEffect

也可以看看


AddEffect(IChart, EffectChartMinorGroupingType, int, int, EffectType, EffectSubtype, EffectTriggerType)

将类别或系列元素的新图表动画效果添加到序列末尾。

public IEffect AddEffect(IChart chart, EffectChartMinorGroupingType type, int seriesIndex, 
    int categoriesIndex, EffectType effectType, EffectSubtype subtype, 
    EffectTriggerType triggerType)
范围类型描述
chartIChart图表对象IChart
typeEffectChartMinorGroupingType动画效果的类型EffectChartMinorGroupingType
seriesIndexInt32图表系列索引Int32
categoriesIndexInt32类别索引Int32
effectTypeEffectType动画效果的类型EffectType
subtypeEffectSubtype动画效果的子类型EffectSubtype
triggerTypeEffectTriggerType效果的触发类型EffectTriggerType

返回值

新效果对象IEffect

也可以看看