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