Data.DB.TParamObject.InstanceIsType

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

function InstanceIsType(const ClassType: TClass): Boolean;

C++

bool __fastcall InstanceIsType(const System::TClass ClassType);

Description

Specifies whether the object stored by the TParamObject instance is of the given class type.

Call InstanceIsType to determine whether the object stored by the TParamObject instance is of the class type specified through the ClassType parameter.

To obtain the actual object instance stored by TParamObject, call the GetInstance method.

See Also