Show: Delphi C++
Display Preferences

System.SysUtils.TProc

From XE2 API Documentation
Jump to: navigation, search

Delphi

type TProc = reference to procedure;
type TProc = reference to procedure(Arg1: T);
type TProc = reference to procedure(Arg1: T1, Arg2: T2);
type TProc = reference to procedure(Arg1: T1, Arg2: T2, Arg3: T3);
type TProc = reference to procedure(Arg1: T1, Arg2: T2, Arg3: T3, Arg4: T4);

C++

__interface TProc  : public System::IInterface
template<typename T> __interface TProc__1  : public System::IInterface
template<typename T1, typename T2> __interface TProc__2  : public System::IInterface
template<typename T1, typename T2, typename T3> __interface TProc__3  : public System::IInterface
template<typename T1, typename T2, typename T3, typename T4> __interface TProc__4  : public System::IInterface

Properties

Type Visibility Source Unit Parent
anonMethod
class
public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

TProc declares a reference to a generic procedure.

Use the TProc type as a reference to a generic procedure. There are a few variants of TProc type, each accepting a different number of generic arguments.

See Also

Personal tools
Previous Versions
Translations