System.TVarArrayCoorArray

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TVarArrayCoorArray = array [0..0] of Integer;

C++

typedef System::StaticArray<int, 1> TVarArrayCoorArray;

Properties

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

Description

Gives the position of an element in a safe array.

Declare a variable of type TVarArrayCoorArray to store information about an element's position in a safe array. Such a variable can then be used in function calls to SafeArrayGetElement or to SafeArrayPutElement.

Each element in an array of type TVarArrayCoorArray stores the coordinate of the element in the safe array, in the increasing order of dimensions.

See Also