System.Rtti.TRttiContext.Free

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Free;

C++

void __fastcall Free();

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.Rtti.pas
System.Rtti.hpp
System.Rtti TRttiContext

Description

Releases the TRttiContext instance.

Use Free to release this instance of the TRttiContext class. Free does not actually free the instance; it just releases the reference to it.

TRttiContext is a singleton instance, meaning that only one instance of TRttiContext is used in the application.

Note: A call to Free is not necessary because the instance is released when the TRttiContext gets out of scope.

See Also