Switch to: V12V11V10V9V8V7V6V5

VArray Class: Construction Methods

VArray.VArray()

Declaration:

VArray( 
	inName as String,      
	inItemsType as Integer,
	inDimSize as EVFieldType )

Parameters:

  • inName - The name of field.
  • inItemsType - The type of array items.
  • inDimSize - The size of array.

Description:

The constructor of VArray Class.

You may need to use this method only if you use the Class Style of coding.

Example:

sub tblMyData
    name = "tblMyData"
 
    fldArray = new VArray( "fldArray", EVFieldType.kLong, 10 )
end