Previous: Abs function To the Table of Content Next: Append procedure

- 4.62.2.2 -
Standard Units
System Unit
System Unit Procedures and Functions

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: Abs function To the Table of Content Next: Append procedure
Abs function Table of Content Append procedure

- 4.62.2.2 -