RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
IntfInfo.TIntfParamEntry Record

TIntfParamEntry and TIntfParamEntryArray represents the array of parameters in a TInfMethEntry value.

Pascal
TIntfParamEntry = record
  Flags: TParamFlags;
  Name: string;
  Info: PTypeInfo;
end;
C++
struct TIntfParamEntry {
  TParamFlags Flags;
  AnsiString Name;
  PTypeInfo Info;
};

TIntfParamEntry describes a single parameter on a method. TIntfParamEntryArray describes all the parameters on a method. 

Flags gives the attributes of the parameter. 

Info is a pointer to the type description for the parameter type. 

 

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