System.Win.ObjComAuto.TDispatchInfo

De RAD Studio API Documentation
Aller à : navigation, rechercher

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;
        };
    };
};

Propriétés

Type Visibilité  Source Unité  Parent
record
struct
public
System.Win.ObjComAuto.pas
System.Win.ObjComAuto.hpp
System.Win.ObjComAuto System.Win.ObjComAuto

Description

A usage interne.

N'utilisez pas directement TDispatchInfo.

Voir aussi