GetTypeInfo

From Real Software Documentation

Jump to: navigation, search
Language Keyword

Returns a TypeInfo object for the passed object type.


Syntax

result=GetTypeInfo (objectType)

Part Type Description
result TypeInfo The TypeInfo object for the passed object type.
objectType Object Class The object for which you want to obtain TypeInfo information.

Examples

The following example gets the TypeInfo for the TCPSocket class.

Dim ti As Introspection.TypeInfo = GetTypeInfo(TCPSocket)
MsgBox(ti.Fullname)

See Also

Introspection module; AttributeInfo, ConstructorInfo, MemberInfo, MethodInfo, ObjectIterator, ParameterInfo, PropertyInfo, TypeInfo classes.

Personal tools