Previous PageNext Page

7.26 VBArray Object

The VBArray object provides access to Visual Basic safe arrays.
 

Methods

Dimensions
 
The number of dimensions in a VBArray.
 
getItem
 
Retrieves an item from a VBArray
 
lbound
 
The lowest index value used in a specified dimension.
 
toArray
 
Converts the VBArray to a standard JScript array.
 
ubound
 
The highest index value used in a specified dimension.
 

Syntax

new VBArray(safeArray)

Arguments

safeArray
A VBArray value.

Remarks

VBArray objects are read-only, and cannot be created directly. The safeArray argument must have obtained a VBArray value before being passed to the VBArray constructor. This can only be done by retrieving the value from an existing ActiveX or other object.
 
VBArrays can have multiple dimensions. The indices of each dimension can be different. The dimensions method retrieves the number of dimensions in the array; the lbound and ubound methods retrieve the range of indices used by each dimension.
 

Copyright © 2000 Chili!Soft

Previous PageTop Of PageNext Page