DesignIntf.IProperty.GetProperties

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: public
Source:
DesignIntf.pas
DesignIntf.hpp
Unit: DesignIntf
Parent: IProperty

Delphi

procedure GetProperties(Proc: TGetPropProc);

C++

virtual void __fastcall GetProperties(TGetPropProc Proc) = 0 ;

Description

Provides the subproperties of the property to a callback procedure.

The Object Inspector calls GetProperties when the property is expanded to show subproperties. Property editors that return paSubProperties from the GetAttributes method should implement GetProperties to create an appropriate property editor and pass its IProperty interface to the Proc parameter for every subproperty (or nested property) of the property.

See Also