Returns the number of items in the folder.
[ lItemsCount = ] Object.ItemsCount
The ItemsCount property syntax has the following parts:
|
Name |
Type |
Description |
|
Object |
AAppFolder |
AAppFolder object |
|
lItemsCount |
Long |
An integer specifying the number of item objects in the App folder. |
The following shows an example:
for i=0 to fld.ItemsCount-1
ob=fld.Items(i)
if ob.Type=aappTypeProgram
....
elseif ob.Type=aappTypeProgramsFolder
....
endif
next