The getLBound method of the SafeArray Class contains the following signatures:
getLBound()
getLBound(int dim)
Retrieves the smallest valid index of the array's first dimension. This method is identical to the Visual Basic LBound function.
public int getLBound();
Returns the smallest valid index.
Retrieves the smallest valid index of an arbitrary dimension. (Dimensions are numbered, starting with 1.) This method is identical to the Visual Basic LBound function.
public int getLBound(int dim);
Returns the smallest valid index.
dim | The dimension. |