FireDAC.Comp.Client.TFDCustomCommand.OnCommandChanged

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

property OnCommandChanged: TNotifyEvent read FOnCommandChanged write FOnCommandChanged;

C++

__property System::Classes::TNotifyEvent OnCommandChanged = {read=FOnCommandChanged, write=FOnCommandChanged};

Propriétés

Type Visibilité  Source Unité  Parent
event public
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
FireDAC.Comp.Client TFDCustomCommand


Description

L'événement qui se déclenche après le changement de CommandText.

L'événement OnCommandChanged se déclenche après le changement de CommandText.

Exemple

procedure TForm1.ADCommand1CommandChanged(ASender: TObject);
begin
  if ADCommand1.FindParam('ID') <> nil then
    ADCommand1.FindParams('ID').AsInteger := 100;
end;

Voir aussi