DesignIntf.IDesignerSelections.Count

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Count: Integer read GetCount;

C++

__property int Count = {read=GetCount};

Properties

Type Visibility Source Unit Parent
property public
DesignIntf.pas
DesignIntf.hpp
DesignIntf IDesignerSelections

Description

Indicates the number of entries in the list.

Read Count to determine the number of entries in the Items array. Use Count as an upper limit when iterating over all the objects in the list.

Count is a read-only property. To increase the number of objects in the list, use the Add method. Objects can not be removed from the list once they have been added.

See Also