AS
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgAs
- Last revised: 2017-01-01
Part of a declaration which specifies a data type, or part of the Open statement which specifies a file handle.
Syntax
vb
symbolname As datatype
open ... As #filenumber
type ... As datatypeDescription
As is used to declare the type of variables, fields or arguments and is also used in the Open statement to determine the file handle. As is also used with the Type (Alias) syntax, similar to C's typedef statement.
Examples
start GeSHi
vb
'' don't try to compile this code, the examples are unrelated
Declare Sub mySub (X As Integer, Y As Single, Z As String)
' ...
Dim X As Integer
' ...
Type myType
X As Integer
Y As Single
Z As String
End Type
' ...
Type TheNewType As myType
' ...
Open "test" For Input As #1
' ...end GeSHi
Differences from QB
- The Type (Alias) syntax was not supported in QB.
See also
DeclareDimTypeOpen
Back to DocToc