Smooth Property

Microsoft PowerPoint Visual Basic

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

MsoTriState can be one of these MsoTriState constants.
msoCTrue
msoFalse The animation point should not be smoothed.
msoTriStateMixed
msoTriStateToggle
msoTrue Default. The animation should be smoothed.

expression.Smooth

expression    Required. An expression that returns one of the objects in the Applies To list.

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