System.SysUtils.PWordArray

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

PWordArray = ^TWordArray;

C++

typedef TWordArray *PWordArray;

Properties

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

Description

PWordArray is a pointer to a TWordArray type.

The PWordArray type points to a TWordArray variable. The TWordArray type declares a static array of Words. The array size is of 16,384 (2**14) elements.


See Also