System.TBoundArray

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type TBoundArray = array of NativeInt;

C++

typedef System::DynamicArray<NativeInt> TBoundArray;

Properties

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

Description

Represents an array of NativeInt integers with array bound information.

TBoundArray represents an array of NativeInt integer values. It is primarily used to hold array bound information. For an example, see DynArrayBounds.

See Also