Data.Bind.ObjectScope.TBindSourceAdapter.GetMemberSetter

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 GetMemberSetter(const AMemberName: string; var ASetter: string): Boolean; virtual;

C++

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

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