RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
SysUtils.TByteArray Type

TByteArray declares an array of Bytes.

Pascal
TByteArray = array[0..32767] of Byte;
C++
array[0..32767] of Byte TByteArray;

SysUtils

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

Note: Static arrays are declared with an immutable size.
 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!