RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TAbstractFieldValuesAdapter.ImplGetField Method

Provides the underlying implementation for the GetField method.

Pascal
function ImplGetField: TObject; virtual; abstract;
C++
virtual __fastcall TObject * ImplGetField() = 0;

The GetField method calls ImplGetField to obtain the object that represents this adapter's single field. Unlike the GetField method, ImplGetField is virtual, so that descendant classes can override it to provide a class-specific mechanism for obtaining the adapter field object. 

In TAbstractFieldValuesAdapter, ImplGetField is abstract or, in C++ terminology, pure virtual, meaning it has no implementation. Descendant classes must override this method to provide an implementation for the GetField method. 

 

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