type TArrayOfByte = array of Byte;
type PArrayOfByte = ^TArrayOfByte;
A dynamic array of bytes.
type TArrayOfInteger = array of Word;
A dynamic array of words.
type TArrayOfInteger = array of Integer;
A dynamic array of integers.
type TArrayOfSingle = array of Single;
A dynamic array of single-precision floating-point values.
type TArrayOfArrayOfInteger = array of TArrayOfInteger;
A dynamic array of dynamic arrays of integers.
Most likely you will never use the reference types directly, however the pointer is the one of some importance. It provides indexed access to values stored in memory, and is used as the result type of the ordinal maps bits properties.
type TByteArray = array [0..0] of Byte;
type PByteArray = ^TByteArray;
A reference to array of byte-typed values.
type TWordArray = array [0..0] of Word;
type PWordArray = ^TWordArray;
A reference to array of word-typed values.
type TIntegerArray = array [0..0] of Integer;
type PIntegerArray = ^TIntegerArray;
A reference to array of integer-typed values.
TByteMap, TIntegerMap, TWordMap
Copyright ©2000-2024 Alex Denisov and the Graphics32 Team - Graphics32 2.0 - Help file built on 18 Feb 2024