Data.DBXCommonTable.TDBXDelegateTable.GetCommand

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: protected
Source:
Data.DBXCommonTable.pas
Data.DBXCommonTable.hpp
Unit: Data.DBXCommonTable
Parent: TDBXDelegateTable

Delphi

function GetCommand: TObject; override;

C++

virtual System::TObject* __fastcall GetCommand();

Description

Returns the command to execute on the table.

Data.DBXCommonTable.TDBXDelegateTable.GetCommand inherits from Data.DBXCommonTable.TDBXTable.GetCommand. All content below this line refers to Data.DBXCommonTable.TDBXTable.GetCommand.

Returns the command to execute on the table.

GetCommand is the getter method for the Command property. By default, GetCommand returns nil for Delphi and NULL for C++, so every descendant of TDBXTable must implement this method.

See Also