API:System.Win.ComObj.TTypedComObjectFactory.ClassInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ClassInfo: ITypeInfo read FClassInfo;

C++

__property _di_ITypeInfo ClassInfo = {read=FClassInfo};

Properties

Type Visibility Source Unit Parent
property public
System.Win.ComObj.pas
System.Win.ComObj.hpp
System.Win.ComObj TTypedComObjectFactory

Description

Returns a pointer to the run-time type information (RTTI) table for the object type.

System.Win.ComObj.TTypedComObjectFactory.ClassInfo inherits from System.TObject.ClassInfo. All content below this line refers to System.TObject.ClassInfo.

Returns a pointer to the run-time type information (RTTI) table for the object type.

ClassInfo provides access to the RTTI table for a given object type.

Some classes do not provide run-time type information. For these classes, ClassInfo returns nil (Delphi) or NULL (C++). All classes descended from TPersistent do provide run-time type information.

See Also