Data.Bind.ObjectScope.TBindSourceAdapter.GetMemberSetter

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetMemberSetter(const AMemberName: string; var ASetter: string): Boolean; virtual;

C++

virtual bool __fastcall GetMemberSetter(const System::UnicodeString AMemberName, System::UnicodeString &ASetter);

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 setter name.

The GetMemberSetter method returns True if the member name provided with the AMemberName parameter has the setter name provided with the ASetter parameter. It returns False otherwise.

Note: GetMemberSetter uses the TBindSourceAdapterField.GetSetter method that must be overridden by descendant classes, because it currently always returns False.

See Also