DesignIntf.TDesignerSelections.Count

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Count: Integer read GetCount;

C++

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

Properties

Type Visibility Source Unit Parent
property protected
DesignIntf.pas
DesignIntf.hpp
DesignIntf TDesignerSelections

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.

Note: Count is a protected property. To access this property you must use the IDesignerSelections interface.

See Also