AfterAnimationColor
Propriété IEffect.AfterAnimationColor
Définit une couleur après animation pour l’effet. Lecture/écriture de IColorFormat
.
public IColorFormat AfterAnimationColor { get; set; }
Exemples
[C#]
using (Presentation presentation = new Presentation("demo.pptx"))
{
// Obtenez le premier effet de la première diapositive.
IEffect firstSlideEffect = presentation.Slides[0].Timeline.MainSequence[0];
// Changez le type après animation de l'effet en "Couleur"
firstSlideEffect.AfterAnimationType = AfterAnimationType.Color;
// Définissez la couleur après animation de l'effet.
firstSlideEffect.AfterAnimationColor.Color = Color.Green;
}
Voir Aussi
- interface IColorFormat
- interface IEffect
- namespace Aspose.Slides.Animation
- assembly Aspose.Slides