System.Classes.RegisterNoIconProc

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

RegisterNoIconProc: procedure(const ComponentClasses: array of TComponentClass) = nil;

C++

extern DELPHI_PACKAGE void __fastcall (*RegisterNoIconProc)(TComponentClass const *ComponentClasses, const int ComponentClasses_High);

Properties

Type Visibility Source Unit Parent
variable public
System.Classes.pas
System.Classes.hpp
System.Classes System.Classes

Description

RegisterNoIconProc is called by RegisterNoIcon.

RegisterNoIcon is used to register a set of custom components so that objects from that class can use the Object Inspector. When it is invoked, it expects RegisterNoIconProc to be defined, and will throw an exception if not. If defined, it is invoked to carry out the registration.

ComponentClasses parameter defines an array of Components to be registered.

See Also