DesignIntf.IDesigner

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
interface
class
Visibility: public
Source:
DesignIntf.pas
DesignIntf.hpp
Unit: DesignIntf
Parent: DesignIntf

Delphi

IDesigner = interface(IDesigner290)

C++

__interface  INTERFACE_UUID("{93F3FCBC-968E-45A9-9641-609E8FB3AC60}") IDesigner  : public IDesigner290

Description

IDesigner is an interface to the form designer in the IDE.

Use IDesigner to interact with the current unit when implementing a property editor or component editor. Access IDesigner through the Designer property of the property editor or component editor. IDesigner introduces several methods that are useful for managing standard menu items and for creating and manipulating components and methods such as event handlers.

Note: C++ method declarations that use IDesigner use the _di_IDesigner type instead. This is a DelphiInterface wrapper around the IDesigner interface:



typedef System::DelphiInterfaceDelphiInterface_object< IDesigner > _di_IDesigner;



See Also