RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TCustomLoginFormAdapter.ImplGetFieldsList Method

Provides the underlying implementation for the GetFieldsList method.

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

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

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

In TCustomLoginFormAdapter, ImplGetFieldsList clears the list of any strings it may contain on entry, and adds the strings, 'UserName', 'Password', and 'NextPage', which it associates with TAdapterUserNameField, TAdapterPasswordField, and TAdapterNextPageField, respectively. 

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!