Vcl.CmAdmCtl.TCOMAdminCatalogCollection.Count

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Count: Integer read Get_Count;

C++

__property int Count = {read=Get_Count, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Vcl.CmAdmCtl.pas
Vcl.CmAdmCtl.hpp
Vcl.CmAdmCtl TCOMAdminCatalogCollection

Description

Indicates the number of items in the collection.

Use Count to determine the number of items in the collection. Count acts as an upper bound for the index to the Get_Item method.

When you first obtain a TCOMAdminCatalogCollection object, the value of Count is 0. Call the Populate method to fill the collection with its items to determine the actual number of items in this collection of the COM+ catalog.

To change the value of Count, add items using the Add method or delete them using the Remove method.

See Also