Data.DB.TParamObject.InstanceIsType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function InstanceIsType(const ClassType: TClass): Boolean;

C++

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

Properties

Type Visibility Source Unit Parent
function protected
Data.DB.pas
Data.DB.hpp
Data.DB TParamObject

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