System.Actions.UnRegisterActionsProc

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

UnRegisterActionsProc: procedure(const AClasses: array of TBasicActionClass) = nil;

C++

extern DELPHI_PACKAGE void __fastcall (*UnRegisterActionsProc)(System::Classes::TBasicActionClass const *AClasses, const int AClasses_High);

Properties

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

Description

The global procedural variable that stores a procedure that unregisters the specified set of action classes.

The UnRegisterActionsProc procedural variable should store a procedure that unregisters the specified set of action classes. The IDE should assign the proper procedure to the UnRegisterActionsProc variable.

UnRegisterActionsProc has the following parameters:

Parameter Description
AClasses

An array of names of registered action classes (descendants of System.Classes.TBasicAction) that are to be unregistered.

AClasses_Size

In C++, indicates the index of the last action class specified in AClasses (one less than the total number of specified classes).

The default value is nil (Delphi) or NULL (C++).

See Also