AddEffect

AddEffect(IShape, EffectType, EffectSubtype, EffectTriggerType)

Neuen Effekt am Ende der Sequenz hinzufügen.

public IEffect AddEffect(IShape shape, EffectType effectType, EffectSubtype subtype, 
    EffectTriggerType triggerType)
ParameterTypBeschreibung
shapeIShapeObjekt formenIShape um einen Effekt hinzuzufügen
effectTypeEffectTypeTyp eines AnimationseffektsEffectType
subtypeEffectSubtypeUntertypen von AnimationseffektenEffectSubtype
triggerTypeEffectTriggerTypeArt des Effekts auslösenEffectTriggerType

Rückgabewert

Neues EffektobjektIEffect

Siehe auch


AddEffect(IParagraph, EffectType, EffectSubtype, EffectTriggerType)

Neuen Animationseffekt für Absatz am Ende der Sequenz hinzufügen.

public IEffect AddEffect(IParagraph paragraph, EffectType effectType, EffectSubtype subtype, 
    EffectTriggerType triggerType)
ParameterTypBeschreibung
paragraphIParagraphParagraph-ObjektIParagraph
effectTypeEffectTypeTyp eines AnimationseffektsEffectType
subtypeEffectSubtypeUntertypen von AnimationseffektenEffectSubtype
triggerTypeEffectTriggerTypeArt des Effekts auslösenEffectTriggerType

Rückgabewert

Neues EffektobjektIEffect

Beispiele

[C#]
using(Presentation presentation = new Presentation(path + "input.pptx"))
{        
   // Absatz auswählen, um Effekt hinzuzufügen
   IAutoShape autoShape = (IAutoShape)presentation.Slides[0].Shapes[0];
   IParagraph paragraph = autoShape.TextFrame.Paragraphs[0];

   // Fly-Animationseffekt zum ausgewählten Absatz hinzufügen
   IEffect effect = presentation.Slides[0].Timeline.MainSequence.AddEffect(
   paragraph, EffectType.Fly, EffectSubtype.Left, EffectTriggerType.OnClick);
}

Siehe auch


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

Fügt den neuen Diagrammanimationseffekt für Kategorie oder Serie am Ende der Sequenz hinzu.

public IEffect AddEffect(IChart chart, EffectChartMajorGroupingType type, int index, 
    EffectType effectType, EffectSubtype subtype, EffectTriggerType triggerType)
ParameterTypBeschreibung
chartIChartDiagrammobjektIChart
typeEffectChartMajorGroupingTypeTyp eines AnimationseffektsEffectChartMinorGroupingType
indexInt32IndexInt32
effectTypeEffectTypeTyp eines AnimationseffektsEffectType
subtypeEffectSubtypeUntertypen von AnimationseffektenEffectSubtype
triggerTypeEffectTriggerTypeArt des Effekts auslösenEffectTriggerType

Rückgabewert

Neues EffektobjektIEffect

Siehe auch


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

Fügt den neuen Diagrammanimationseffekt für Elemente in Kategorien oder Serien am Ende der Sequenz hinzu.

public IEffect AddEffect(IChart chart, EffectChartMinorGroupingType type, int seriesIndex, 
    int categoriesIndex, EffectType effectType, EffectSubtype subtype, 
    EffectTriggerType triggerType)
ParameterTypBeschreibung
chartIChartDiagrammobjektIChart
typeEffectChartMinorGroupingTypeTyp eines AnimationseffektsEffectChartMinorGroupingType
seriesIndexInt32Index der DiagrammreihenInt32
categoriesIndexInt32Index der KategorieInt32
effectTypeEffectTypeTyp eines AnimationseffektsEffectType
subtypeEffectSubtypeUntertypen von AnimationseffektenEffectSubtype
triggerTypeEffectTriggerTypeArt des Effekts auslösenEffectTriggerType

Rückgabewert

Neues EffektobjektIEffect

Siehe auch