DesignEditors.TComponentEditor.Designer

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Designer: IDesigner read GetDesigner;

C++

__property Designintf::_di_IDesigner Designer = {read=GetDesigner};

Properties

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

Description

Provides access to the form designer in the IDE.

Use Designer to read from or make changes to the current form or module in the IDE. The IDesigner interface has methods that can access the components in the current unit and other units linked in by the uses clause (Delphi) or defined in included header files (C++). Other IDesigner methods create or alter the methods in the current unit and so on.

Note: When the component editor makes changes to the component, it must call the Modified method of the IDesigner interface.

See Also