AddEffect

AddEffect(IShape, EffectType, EffectSubtype, EffectTriggerType)

Añadir nuevo efecto al final de la secuencia.

public IEffect AddEffect(IShape shape, EffectType effectType, EffectSubtype subtype, 
    EffectTriggerType triggerType)
ParámetroEscribeDescripción
shapeIShapeObjeto de formaIShape para agregar un efecto
effectTypeEffectTypeTipo de un efecto de animaciónEffectType
subtypeEffectSubtypeSubtipos de efecto de animaciónEffectSubtype
triggerTypeEffectTriggerTypeActivar tipo de efectoEffectTriggerType

Valor_devuelto

Nuevo objeto de efectoIEffect

Ver también


AddEffect(IParagraph, EffectType, EffectSubtype, EffectTriggerType)

Agrega un nuevo efecto de animación para el párrafo al final de la secuencia.

public IEffect AddEffect(IParagraph paragraph, EffectType effectType, EffectSubtype subtype, 
    EffectTriggerType triggerType)
ParámetroEscribeDescripción
paragraphIParagraphObjeto de párrafoIParagraph
effectTypeEffectTypeTipo de un efecto de animaciónEffectType
subtypeEffectSubtypeSubtipos de efecto de animaciónEffectSubtype
triggerTypeEffectTriggerTypeActivar tipo de efectoEffectTriggerType

Valor_devuelto

Nuevo objeto de efectoIEffect

Ejemplos

[C#]
using(Presentation presentation = new Presentation(path + "input.pptx"))
{        
   // selecciona el párrafo para agregar efecto
   IAutoShape autoShape = (IAutoShape)presentation.Slides[0].Shapes[0];
   IParagraph paragraph = autoShape.TextFrame.Paragraphs[0];

   // agrega el efecto de animación Fly al párrafo seleccionado
   IEffect effect = presentation.Slides[0].Timeline.MainSequence.AddEffect(
   paragraph, EffectType.Fly, EffectSubtype.Left, EffectTriggerType.OnClick);
}

Ver también


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

Agrega el nuevo efecto de animación de gráfico para categoría o serie al final de la secuencia.

public IEffect AddEffect(IChart chart, EffectChartMajorGroupingType type, int index, 
    EffectType effectType, EffectSubtype subtype, EffectTriggerType triggerType)
ParámetroEscribeDescripción
chartIChartObjeto gráficoIChart
typeEffectChartMajorGroupingTypeTipo de un efecto de animaciónEffectChartMinorGroupingType
indexInt32ÍndiceInt32
effectTypeEffectTypeTipo de un efecto de animaciónEffectType
subtypeEffectSubtypeSubtipos de efecto de animaciónEffectSubtype
triggerTypeEffectTriggerTypeActivar tipo de efectoEffectTriggerType

Valor_devuelto

Nuevo objeto de efectoIEffect

Ver también


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

Agrega el nuevo efecto de animación de gráficos para elementos en categoría o serie al final de la secuencia.

public IEffect AddEffect(IChart chart, EffectChartMinorGroupingType type, int seriesIndex, 
    int categoriesIndex, EffectType effectType, EffectSubtype subtype, 
    EffectTriggerType triggerType)
ParámetroEscribeDescripción
chartIChartObjeto gráficoIChart
typeEffectChartMinorGroupingTypeTipo de un efecto de animaciónEffectChartMinorGroupingType
seriesIndexInt32Índice de series de gráficosInt32
categoriesIndexInt32Índice de categoríaInt32
effectTypeEffectTypeTipo de un efecto de animaciónEffectType
subtypeEffectSubtypeSubtipos de efecto de animaciónEffectSubtype
triggerTypeEffectTriggerTypeActivar tipo de efectoEffectTriggerType

Valor_devuelto

Nuevo objeto de efectoIEffect

Ver también