Gets the number of objects in the collection. | |
Syntax: | long = object.Count |
Description: | The Count property returns the objects in
the collection. Example: Sub ExprListAnim_Count() Dim oCimExprListAnim As
GefExprListAnim Set oCimExprListAnim =
CimGetObject.ExprListAnim MsgBox "The number of animations in
the expression list " & _ "is " &
oCimExprListAnim.Count End Sub |