Option Base Statement [Runtime]/text/sbasic/shared/03103200.xhpSun Microsystems, Inc.converted from old format - fpeOption Base statementOption Base Statement [Runtime]Defines the default lower boundary for arrays as 0 or 1.Syntax:Option Base { 0 | 1}Parameters:This statement must be added before the executable program code in a module.Example:option Base 1Sub ExampleOptionBaseDim sVar(20) As Stringmsgbox LBound(sVar())end sub