System.Classes.TComponent.PaletteCreated

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure PaletteCreated; dynamic;

C++

DYNAMIC void __fastcall PaletteCreated(void);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.Classes.pas
System.Classes.hpp
System.Classes TComponent

Description

Responds when the component is created from the component palette.

PaletteCreated is called automatically at design time when the component has just been created from the component palette. Component writers can override this method to perform adjustments that are required only when the component is created from the component palette.

As implemented in TComponent, PaletteCreated does nothing.

See Also