SoFunction
Updated on 2025-04-03

JS functions for handling VBArray

varName = new VBArray(safeArray) 
Parameters
varName 
Required. VBArray The name of the variable assigned to.

safeArray 
Required. VBArray value.

Remark
The safeArray parameter must have a VBArray value before being passed to the VBArray constructor. To get the value, you can retrieve the value from an existing ActiveX or other object.

Notice
Arrays created in JScript and arrays created in Visual Basic can be used interoperably with .NET Framework arrays. Therefore, elements of an array created in Visual Basic can be accessed directly in JScript. VBArray objects are only provided for backward compatibility. For more information about arrays, see Array Objects, Dim Statements, and :.


VBArray can have multi-dimensionality. The index of each dimension can be different. The dimensions method retrieves the dimensions in the array; the lbound and ubund methods retrieve the index range used in each dimension.

Attributes
VBArray object has no properties.


In JS, you can use getItem(colIndex, rowIndex) to directly access VBArray (no new VBArray is required).
The VBArray object provides the following methods:
dimensions(): Get the number of columns
ubund(colCount): Get the number of rows based on the number of columns (dimensionality).
lbound(colCount): used to determine how much the index starts. This is not very meaningful, and generally returns 0.
toArray(): Directly become a js array (one-dimensional).
getItem(y, x): Get the x-row column y-row.