Sun Chili!Soft ASP Sun Chili!Soft
ASP Sun Microsystems

 

VBScript UBound Function

Returns the largest available subscript for the indicated dimension of an array.

Syntax: VBScript UBound Function

UBound(arrayname[, dimension])

Arguments: VBScript UBound Function

arrayname

The name of the array variable; follows standard variable naming conventions. Required.

dimension

The whole number indicating which dimension's upper bound is returned. Use 1 for the first dimension, 2 for the second, and so on. If dimension is omitted, 1 is assumed. Optional.

Remarks: VBScript UBound Function

The UBound function is used with the LBound function to determine the size of an array. Use the LBound function to find the lower limit of an array dimension.

The default lower bound for any dimension is always 0. As a result, UBound returns the following values for an array with these dimensions:

Dim A(100,3,4)

Statement

Return Value

Ubound(A, 1)

99

Ubound(A, 2)

2

Ubound(A, 3)

3

Copyright 2002 Sun Microsystems, Inc. All rights reserved. Legal Notice.