Data.Bind.ObjectScope.TBindSourceAdapter.GetMemberGetter

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: protected
Source:
Data.Bind.ObjectScope.pas
Data.Bind.ObjectScope.hpp
Unit: Data.Bind.ObjectScope
Parent: TBindSourceAdapter

Delphi

function GetMemberGetter(const AMemberName: string; var AGetter: string): Boolean; virtual;

C++

virtual bool __fastcall GetMemberGetter(const System::UnicodeString AMemberName, System::UnicodeString &AGetter);

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.

See Also