System.Rtti.TVirtualMethodInterceptor.OnAfter

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnAfter: TInterceptAfterNotify read FOnAfter write FOnAfter;

C++

__property _di_TInterceptAfterNotify OnAfter = {read=FOnAfter, write=FOnAfter};

Properties

Type Visibility Source Unit Parent
property public
System.Rtti.pas
System.Rtti.hpp
System.Rtti TVirtualMethodInterceptor

Description

This event is called after the inherited implementation has been invoked.

Use the OnAfter event handler to respond when inherited virtual methods have been called. Proxify must first be used to intercept the method calls of the particular class type. The documentation for TInterceptAfterNotify describes the details of the parameters.

See Also