DesignIntf.IDesigner

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

IDesigner = interface(IDesigner200)

C++

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

Properties

Type Visibility Source Unit Parent
interface
class
public
DesignIntf.pas
DesignIntf.hpp
DesignIntf DesignIntf

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