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