FireDAC.Comp.Client.TFDTable.AfterInsert

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property AfterInsert: TDataSetNotifyEvent read FAfterInsert write FAfterInsert;

C++

__property AfterInsert;

Properties

Type Visibility Source Unit Parent
event published
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
FireDAC.Comp.Client TFDTable

Description

Occurs after an application inserts a new record.

FireDAC.Comp.Client.TFDTable.AfterInsert inherits from Data.DB.TDataSet.AfterInsert. All content below this line refers to Data.DB.TDataSet.AfterInsert.

Occurs after an application inserts a new record.

Write an AfterInsert event handler to take specific action immediately after an application inserts a record. The Insert and Append methods generate an AfterInsert event after inserting or appending a new record.

AfterInsert is an event handler of type Data.DB.TDataSetNotifyEvent.

See Also

Code Examples