Data.Bind.Components.TBindComponentDelegate.MemberRenaming
[–] Properties | |
---|---|
Type: procedure function
| |
Visibility: protected | |
Source: Data.Bind.Components.pas Data.Bind.Components.hpp
| |
Unit: Data.Bind.Components | |
Parent: TBindComponentDelegate |
Delphi
procedure MemberRenaming(Sender: TComponent; AComponent: TComponent;
const ACurMemberName, ANewMemberName: string); virtual;
C++
virtual void __fastcall MemberRenaming(System::Classes::TComponent* Sender, System::Classes::TComponent* AComponent, const System::UnicodeString ACurMemberName, const System::UnicodeString ANewMemberName);
Description
Used for renaming a member of this binding component.
MemberRenaming is used for renaming component members. The old member name is given through the ACurMemberName
parameter, while the new member name is given through the ANewMemberName
parameter.