Set Array Lower Boundary Method
The Set Array Lower Boundary method specifies the default lower boundary to use for an array. It does not return a value. Note the following:
You can use this method to set the lower boundary before you use any array in your code. If you do not use this method, then Siebel VB uses 0 as the default value for the lower boundary.
You can use this method only one time for each module.
You cannot use this method in a procedure.
You must include this method in the general declarations section. For example:
Option Explicit
Option Base 1
Option Compare Text
Format
Option Base lowerBound
The following table describes the arguments that you can use with this method.
Argument | Description |
---|---|
lowerBound |
The value 0 or 1 or an expression that evaluates to one of these values. |
Example
For an example, see Get Array Lower Boundary Method.