ItemsCount Property (AAppFolder)

Returns the number of items in the folder.

Syntax

[ 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.

Comments

 

Example

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

Applies to

AAppFolder

See Also