Soap.IntfInfo.GetClsMemberTypeInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetClsMemberTypeInfo(const ObjectTypeInfo: PTypeInfo; const MemberName: string): PTypeInfo;

C++

extern DELPHI_PACKAGE System::Typinfo::PTypeInfo __fastcall GetClsMemberTypeInfo(const System::Typinfo::PTypeInfo ObjectTypeInfo, const System::UnicodeString MemberName = System::UnicodeString());

Properties

Type Visibility Source Unit Parent
function public
Soap.IntfInfo.pas
Soap.IntfInfo.hpp
Soap.IntfInfo Soap.IntfInfo

Description

Returns the runtime type information (RTTI) for a published member of a class.

ObjectTypeInfo is a pointer to the type information of the class that includes the published property. You can obtain this value for a class using the TypeInfo (Delphi) or __classid (C++) function.

MemberName is the name of a published property in the class identified by ObjectTypeInfo.

GetClsMemberTypeInfo returns a pointer to the type information for the specified property.