Data.DB.TDataSet.InternalDelete

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: TDataSet

Delphi

procedure InternalDelete; virtual;

C++

virtual void __fastcall InternalDelete();

Description

Used internally to delete the current record.

InternalDelete is internally used by Delete to delete the current record from the dataset. The method is virtual and blank, so every TDataSet descendant must override it in its specific way.

See Also