9.0
190
Group
File
Description
Delete the file named by Name$.
Parameter Description
Name$ This string value is the path and name of the file. A path relative to the current
directory can be used.
Example
Sub Main
Kill "XXX"
End
Sub
Label definition
An identifier that names a statement. Identifiers start with a letter. Following chars may be a letter, an underscore
or a digit.
LBound Function
Syntax
LBound(arrayvar[, dimension])
Group
Variable Info
Description
Return the lowest index.
Parameter Description
arrayvar Return the lowest index for this array variable.
dimension Return the lowest index for this dimension of arrayvar. If this is omitted then return
the lowest index for the first dimension.
See Also: UBound( ).
Example
Sub Main
Dim
A(-1 To 3,2 To 6)
Debug
.Print LBound(A) '-1
Debug
.Print LBound(A,1) '-1
Debug
.Print LBound(A,2) ' 2
End
Sub










