Gets and sets the minimum value used in expression based animations. | |
Syntax: | VARIANT =
object.MinExprValue object.MinExprValue = VARIANT |
Description: | In expression based animations, when the
expression reaches this minimum value, the object is its original
size. Example: Sub GefScaleAnimAttrib_MinExprValue() Dim oCimObj As GefObject Dim oCimScaleAnim As
GefScaleAnim Dim oCimScaleAnimAttrib As
GefScaleAnimAttrib Set oCimObj = CimGetObject Set oCimScaleAnim =
oCimObj.ScaleAnim Set oCimScaleAnimAttrib =
oCimScaleAnim.HorizontalAttrib MsgBox "The minimum expression value
for the horizontal scale animation is " &
oCimScaleAnimAttrib.MinExprValue End Sub |