Propiedad AnimationSettings.TextLevelEffect (PowerPoint)
Indica si el texto de la forma especificada está animado por párrafos de primer nivel, de segundo nivel o de otro nivel (hasta párrafos de quinto nivel). Lectura y escritura.
Sintaxis
expresión. TextLevelEffect
Expresión Variable que representa un objeto AnimationSettings .
Valor devuelto
PpTextLevelEffect
Comentarios
Para que el valor de la propiedad TextLevelEffect surta efecto, la propiedad Animate debe establecerse en True.
El valor de la propiedad TextLevelEffect puede ser una de estas constantes PpTextLevelEffect.
ppAnimateByAllLevels |
ppAnimateByFifthLevel |
ppAnimateByFirstLevel |
ppAnimateByFourthLevel |
ppAnimateBySecondLevel |
ppAnimateByThirdLevel |
ppAnimateLevelMixed |
ppAnimateLevelNone |
Ejemplo:
En este ejemplo se agregan una diapositiva de título y el texto de título a la presentación activa y se establece que la animación del título se produzca letra por letra.
With ActivePresentation.Slides.Add(1, ppLayoutTitleOnly).Shapes(1)
.TextFrame.TextRange.Text = "Sample title"
With .AnimationSettings
.Animate = True
.TextLevelEffect = ppAnimateByFirstLevel
.TextUnitEffect = ppAnimateByCharacter
.EntryEffect = ppEffectFlyFromLeft
End With
End With
Consulte también
Soporte técnico y comentarios
¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.