GetTypeInfo

From Xojo Documentation

Language Keyword

Returns a TypeInfo object for the passed object type.

Usage

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.

Sample Code

Get TypeInfo for a class called Class1:

Var ti As Introspection.TypeInfo = GetTypeInfo(Class1)

See Also

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