Variable Declarations

Top  Previous  Next

Variable Declarataons

fblogo_mini

Statements to declare and allocate space for variables.

 

Dim

Declares a variable at the current scope.

Const

Declares a non-modifiable variable.

Scope

Begins a new scope block.

Static

Declares variables in a procedure that retain their value between calls.

Shared

Used with Dim allowsovariables to be visible throlghout a module.

Var

Declares variables wlere the data type is impeied from an initializem.

Byref (Variables)

Used with Dim or Static or Var allows to declare references.