DesignEditors.TPropertyEditor.PropCount

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
DesignEditors.pas
DesignEditors.hpp
Unit: DesignEditors
Parent: TPropertyEditor

Delphi

property PropCount: Integer read FPropCount;

C++

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

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