RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
ObjComAuto.TDispatchInfo Record
Pascal
TDispatchInfo = record
  Instance: TObject;
  Kind: TDispatchKind;
  case TDispatchKind of
    dkMethod: (MethodInfo: PMethodInfoHeader;);
    dkProperty: (PropInfo: PPropInfo;);
    dkSubComponent: (Index: Integer;);
end;
C++
struct TDispatchInfo {
  TObject * Instance;
  TDispatchKind Kind;
  PMethodInfoHeader MethodInfo;
  PPropInfo PropInfo;
  int Index;
};

This is record ObjComAuto.TDispatchInfo.

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!