Previous: 4.67.2.1. Abs function To the Table of Contents Next: 4.67.2.3. Append procedure
4.67.2.1. Abs function Table of Contents 4.67.2.3. Append procedure

- 4.67.2.2. -
Table of Contents
4. Standard Units
4.67. System - Built-in routines
4.67.2. System Unit Procedures and Functions
4.67.2.2. Addr function


4.67.2.2. Addr function

Targets: MS-DOS, Win32

System Unit

Returns the address of a specified object.

Declaration:
function Addr(X): Pointer;
Remarks:
Use Addr to determine the address of an object. Using Addr is the same as using the @ operator.

Example:
Var
  b : Byte;
  p : Pointer;
Begin
  p := Addr(b);  // Same as p := @b;
End.







Previous: 4.67.2.1. Abs function To the Table of Contents Next: 4.67.2.3. Append procedure
4.67.2.1. Abs function Table of Contents 4.67.2.3. Append procedure

- 4.67.2.2. -