System.Win.ObjComAuto.TDispatchInfo

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TDispatchInfo = record
    Instance: TObject;
    case Kind: TDispatchKind of
      dkMethod: (MethodInfo: PMethodInfoHeader);
      dkProperty: (PropInfo: PPropInfo);
      dkSubComponent: (Index: Integer);
  end;

C++

struct DECLSPEC_DRECORD TDispatchInfo
{
public:
    System::TObject* Instance;
public:
    TDispatchKind Kind;
    union
    {
        struct
        {
            int Index;
        };
        struct
        {
            System::Typinfo::TPropInfo *PropInfo;
        };
        struct
        {
            System::Objauto::TMethodInfoHeader *MethodInfo;
        };
    };
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
System.Win.ObjComAuto.pas
System.Win.ObjComAuto.hpp
System.Win.ObjComAuto System.Win.ObjComAuto

Beschreibung

Für den internen Gebrauch.

Verwenden Sie TDispatchInfo nicht direkt.

Siehe auch