System.SysUtils.TWordArray

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type TWordArray = array [0..16383] of Word;

C++

typedef System::StaticArray<System::Word, 16384> TWordArray;

Properties

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

Description

TWordArray declares an array of Words.

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

Note: Static arrays are declared with an immutable size.