Data.Bind.ObjectScope.TBindSourceAdapter.GetMemberGetter
Delphi
function GetMemberGetter(const AMemberName: string; var AGetter: string): Boolean; virtual;
C++
virtual bool __fastcall GetMemberGetter(const System::UnicodeString AMemberName, System::UnicodeString &AGetter);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | protected | Data.Bind.ObjectScope.pas Data.Bind.ObjectScope.hpp |
Data.Bind.ObjectScope | TBindSourceAdapter |
Description
Returns whether the member name has the provided getter name.
The GetMemberGetter method returns True
if the member name provided with the AMemberName
parameter has the getter name provided with the AGetter
parameter. It returns False
otherwise.
- Note: GetMemberGetter uses the TBindSourceAdapterField.GetGetter method that must be overridden by descendant classes, because it currently always returns
False
.