System.SysUtils.PByteArray

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type PByteArray = ^TByteArray;

C++

typedef TByteArray *PByteArray;

Properties

Type Visibility Source Unit Parent
pointer
typedef
public
System.SysUtils.pas
System.SysUtils.hpp
System.SysUtils System.SysUtils

Description

PByteArray declares a pointer to an array of Bytes.

The PByteArray type declares a pointer to a TByteArray: a static array of Bytes. The array size is of 32,768 (2**15) elements.

Note: Static arrays are declared with an immutable size.

See Also