TObject.GetInterface
Return a reference to an interface
Declaration
Source position: objpash.inc line 245
public
function GetInterface(const iid: TGuid; out obj) : Boolean;
function GetInterface(const iidstr: shortstring; out obj) : Boolean;
Description
GetInterface scans the interface tables and returns a reference to the interface iid. The reference is stored in Obj which should be an interface reference. It returns True if the interface was found, False if not.
The reference count of the interface is increased by this call.
Errors
If no interface was found, False is returned.
See also
Name | Description |
---|---|
GetInterfaceByStr | Return an interface based on its GUID |