AddEffect
Inhalt
[
Ausblenden
]AddEffect(IShape, EffectType, EffectSubtype, EffectTriggerType)
Neuen Effekt am Ende der Sequenz hinzufügen.
public IEffect AddEffect(IShape shape, EffectType effectType, EffectSubtype subtype,
EffectTriggerType triggerType)
Parameter | Typ | Beschreibung |
---|---|---|
shape | IShape | Objekt formenIShape um einen Effekt hinzuzufügen |
effectType | EffectType | Typ eines AnimationseffektsEffectType |
subtype | EffectSubtype | Untertypen von AnimationseffektenEffectSubtype |
triggerType | EffectTriggerType | Art des Effekts auslösenEffectTriggerType |
Rückgabewert
Neues EffektobjektIEffect
Siehe auch
- interface IEffect
- interface IShape
- enum EffectType
- enum EffectSubtype
- enum EffectTriggerType
- interface ISequence
- namensraum Aspose.Slides.Animation
- Montage Aspose.Slides
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)
Parameter | Typ | Beschreibung |
---|---|---|
paragraph | IParagraph | Paragraph-ObjektIParagraph |
effectType | EffectType | Typ eines AnimationseffektsEffectType |
subtype | EffectSubtype | Untertypen von AnimationseffektenEffectSubtype |
triggerType | EffectTriggerType | Art 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
- interface IEffect
- interface IParagraph
- enum EffectType
- enum EffectSubtype
- enum EffectTriggerType
- interface ISequence
- namensraum Aspose.Slides.Animation
- Montage Aspose.Slides
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)
Parameter | Typ | Beschreibung |
---|---|---|
chart | IChart | DiagrammobjektIChart |
type | EffectChartMajorGroupingType | Typ eines AnimationseffektsEffectChartMinorGroupingType |
index | Int32 | IndexInt32 |
effectType | EffectType | Typ eines AnimationseffektsEffectType |
subtype | EffectSubtype | Untertypen von AnimationseffektenEffectSubtype |
triggerType | EffectTriggerType | Art des Effekts auslösenEffectTriggerType |
Rückgabewert
Neues EffektobjektIEffect
Siehe auch
- interface IEffect
- interface IChart
- enum EffectChartMajorGroupingType
- enum EffectType
- enum EffectSubtype
- enum EffectTriggerType
- interface ISequence
- namensraum Aspose.Slides.Animation
- Montage Aspose.Slides
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)
Parameter | Typ | Beschreibung |
---|---|---|
chart | IChart | DiagrammobjektIChart |
type | EffectChartMinorGroupingType | Typ eines AnimationseffektsEffectChartMinorGroupingType |
seriesIndex | Int32 | Index der DiagrammreihenInt32 |
categoriesIndex | Int32 | Index der KategorieInt32 |
effectType | EffectType | Typ eines AnimationseffektsEffectType |
subtype | EffectSubtype | Untertypen von AnimationseffektenEffectSubtype |
triggerType | EffectTriggerType | Art des Effekts auslösenEffectTriggerType |
Rückgabewert
Neues EffektobjektIEffect
Siehe auch
- interface IEffect
- interface IChart
- enum EffectChartMinorGroupingType
- enum EffectType
- enum EffectSubtype
- enum EffectTriggerType
- interface ISequence
- namensraum Aspose.Slides.Animation
- Montage Aspose.Slides