System.Actions.UnRegisterActions

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure UnRegisterActions(const AClasses: array of TBasicActionClass);

C++

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

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.Actions.pas
System.Actions.hpp
System.Actions System.Actions

Description

Unregisters the specified set of action classes.

UnRegisterActions unregisters the set of action classes specified in AClasses specified that were registered with the RegisterActions method. To provide this functionality, UnRegisterActions calls the procedure stored in the UnRegisterActionsProc variable. The IDE should assign the proper procedure to the UnRegisterActionsProc variable.

UnRegisterActions 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).

See Also