AddEffect
Contenido
[
Ocultar
]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ámetro | Escribe | Descripción |
---|---|---|
shape | IShape | Objeto de formaIShape para agregar un efecto |
effectType | EffectType | Tipo de un efecto de animaciónEffectType |
subtype | EffectSubtype | Subtipos de efecto de animaciónEffectSubtype |
triggerType | EffectTriggerType | Activar tipo de efectoEffectTriggerType |
Valor_devuelto
Nuevo objeto de efectoIEffect
Ver también
- interface IEffect
- interface IShape
- enum EffectType
- enum EffectSubtype
- enum EffectTriggerType
- class Sequence
- espacio de nombres Aspose.Slides.Animation
- asamblea Aspose.Slides
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ámetro | Escribe | Descripción |
---|---|---|
paragraph | IParagraph | Objeto de párrafoIParagraph |
effectType | EffectType | Tipo de un efecto de animaciónEffectType |
subtype | EffectSubtype | Subtipos de efecto de animaciónEffectSubtype |
triggerType | EffectTriggerType | Activar 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
- interface IEffect
- interface IParagraph
- enum EffectType
- enum EffectSubtype
- enum EffectTriggerType
- class Sequence
- espacio de nombres Aspose.Slides.Animation
- asamblea Aspose.Slides
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ámetro | Escribe | Descripción |
---|---|---|
chart | IChart | Objeto gráficoIChart |
type | EffectChartMajorGroupingType | Tipo de un efecto de animaciónEffectChartMinorGroupingType |
index | Int32 | ÍndiceInt32 |
effectType | EffectType | Tipo de un efecto de animaciónEffectType |
subtype | EffectSubtype | Subtipos de efecto de animaciónEffectSubtype |
triggerType | EffectTriggerType | Activar tipo de efectoEffectTriggerType |
Valor_devuelto
Nuevo objeto de efectoIEffect
Ver también
- interface IEffect
- interface IChart
- enum EffectChartMajorGroupingType
- enum EffectType
- enum EffectSubtype
- enum EffectTriggerType
- class Sequence
- espacio de nombres Aspose.Slides.Animation
- asamblea Aspose.Slides
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ámetro | Escribe | Descripción |
---|---|---|
chart | IChart | Objeto gráficoIChart |
type | EffectChartMinorGroupingType | Tipo de un efecto de animaciónEffectChartMinorGroupingType |
seriesIndex | Int32 | Índice de series de gráficosInt32 |
categoriesIndex | Int32 | Índice de categoríaInt32 |
effectType | EffectType | Tipo de un efecto de animaciónEffectType |
subtype | EffectSubtype | Subtipos de efecto de animaciónEffectSubtype |
triggerType | EffectTriggerType | Activar tipo de efectoEffectTriggerType |
Valor_devuelto
Nuevo objeto de efectoIEffect
Ver también
- interface IEffect
- interface IChart
- enum EffectChartMinorGroupingType
- enum EffectType
- enum EffectSubtype
- enum EffectTriggerType
- class Sequence
- espacio de nombres Aspose.Slides.Animation
- asamblea Aspose.Slides