Microsoft JScript
lbound Method
Language Reference
Version 3

See Also Applies To


Description
Returns the lowest index value used in the specified dimension of a VBArray.
Syntax
safeArray.lbound(dimension)

The lbound method syntax has these parts:

Part Description
safeArray Required. A VBArray object.
dimension Optional. The dimension of the VBArray for which the lower bound index is wanted. If omitted, lbound behaves as if a 1 was passed.
Remarks
If the VBArray is empty, the lbound method returns undefined. If dimension is greater than the number of dimensions in the VBArray, or is negative, the method generates a "Subscript out of range" error.

Comments