DesignEditors.TPropertyEditor.PropCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property PropCount: Integer read FPropCount;

C++

__property int PropCount = {read=FPropCount, nodefault};

Properties

Type Visibility Source Unit Parent
property public
DesignEditors.pas
DesignEditors.hpp
DesignEditors TPropertyEditor

Description

Indicates the number of components whose properties are being edited.

Use PropCount to determine the valid range of indexes to use when calling the GetComponent method. This value corresponds to the number of components selected when the property editor is created. Typically, it is not necessary to access individual components because the Getxxx and Setxxx methods propagate values appropriately.

See Also