System.Rtti.TRttiInterfaceType.IntfFlags

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property IntfFlags: TIntfFlags read GetIntfFlags;

C++

__property System::Typinfo::TIntfFlags IntfFlags = {read=GetIntfFlags, nodefault};

Properties

Type Visibility Source Unit Parent
property public
System.Rtti.pas
System.Rtti.hpp
System.Rtti TRttiInterfaceType

Description

Specifies the interface flags.

Use IntfFlags to obtain a set of TIntfFlag values that provide specific information about the interface type. The value of IntfFlags is a combination of values listed in the following table.



Value Meaning

ifHasGuid

The reflected interface type has a valid GUID value.

ifDispInterface

The reflected interface type is a dispinterface.

ifDispatch

The reflected interface type supports dynamic dispatch.



See Also