AnimationPoints.Smooth property (PowerPoint)

Determines whether the transition from one animation point to another is smoothed. Read/write.

Syntax

expression.Smooth

expression A variable that represents a AnimationPoints object.

Return value

MsoTriState

Remarks

The value of the Smooth property can be one of these MsoTriState constants.

Constant Description
msoFalse The animation point should not be smoothed.
msoTrue The default. The animation should be smoothed.

Example

This example changes smoothing for an animation point.

Sub ChangeSmooth(ByVal ani As AnimationBehavior, ByVal bln As MsoTriState)

    ani.PropertyEffect.Points.Smooth = bln

End Sub

See also

AnimationPoints Object LegendKey Object Series Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.