Field-Map Scripting

5.2 Structured data types

Structured data types


    • Array
    • Record


Example of variable declaration:

type
  MyTreeRecord = record
    ID : integer;		
    DBH_mm : variant;
    Species : variant;	
  end;

var
  a : array[1..100] of integer;			// array of base type (integer)
  tree : MyTreeRecord;				// variable of type record
  ATrees : array [1..100] of MyTreeRecord;	// array of structured type (record)


See also: Basic data types