9.0
106
A positional parameter may be skipped by omitting the expression. Only optional parameters may be
skipped.
Positional parameter assignment is done with expr. Each parameter is assigned in turn. By name parameter
assignment may follow.
By name parameter assignment is done with param:=expr. All following parameters must be assigned by
name.
Array Function
Syntax
Array([expr[, ...]])
Group
Conversion
Description
Return a variant value array containing the exprs.
Example
Sub Main
X = Array(0,1,4,9)
Debug
.Print X(2) ' 4
End
Sub
Array variable definition
A variable that holds an array of values. A Variant variable can hold an array. Dynamic arrays can be
ReDim
ensioned.
As [New] type definition
Dim, Private, Public and Static statements may declare variable types using As type or As New objtype. A variable
declared using As New objtype
is automatically created prior to use, if the variable is Nothing.
Asc Function
Syntax
Asc(S$)










