RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TCustomLoginFormAdapter.ImplGetActionsList Method

Provides the underlying implementation for the GetActionsList method.

Pascal
procedure ImplGetActionsList(AList: TStrings); override;
C++
virtual __fastcall ImplGetActionsList(TStrings AList);

ImplGetActionsList provides the underlying implementation of the GetActionsList method that is introduced in TCustomAdapter. This method fills a string list with the names of all the actions an adapter can support, associating each action name with a class reference to the corresponding action class. 

AList is an existing string list instance to fill with the names of the actions that this adapter supports. 

In TCustomLoginFormAdapter, ImplGetActionsList clears the list of any strings it may contain on entry, and adds a single string, 'Login', which is the name of the login action. It associates this string with TLoginFormAdapterLoginAction

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!