Data.Bind.Components.TCommonBindComponent.MemberRemoved

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
Data.Bind.Components.pas
Data.Bind.Components.hpp
Unit: Data.Bind.Components
Parent: TCommonBindComponent

Delphi

procedure MemberRemoved(AComponent: TComponent; const AMemberName: string); virtual;

C++

virtual void __fastcall MemberRemoved(System::Classes::TComponent* AComponent, const System::UnicodeString AMemberName);

Description

May be called by the source component to notify binding components that a member of the source component has been removed, giving the binding components an opportunity to update their expressions.

The AComponent parameter specifies the source component, while the AMemberName parameter specifies the name of the member.

MemberRemoved is part of the implementation of the IBindMemberChange interface.

See Also