VarType: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.''
VarType(''variable'')
VarType(''variable'')


Line 12: Line 14:
|-
|-
! Constant !! Value !! Description
! Constant !! Value !! Description
|-
| vbEmpty || 0 || Empty
|-
| vbNull || 1 || Null
|-
|-
| vbInteger || 2 || Integer  
| vbInteger || 2 || Integer  
|-
| vbLong || 3 || Long
|-
| vbSingle || 4 || Single-precision floating-point
|-
|-
| vbDouble || 5 || Double-precision floating-point  
| vbDouble || 5 || Double-precision floating-point  
Line 24: Line 34:
|-
|-
| vbObject || 9 || Object
| vbObject || 9 || Object
|-
| vbError || 10 || Error
|-
|-
| vbBoolean || 11 || Boolean
| vbBoolean || 11 || Boolean
|-
| vbVariant || 12 || Variant
|-
| vbDataObject || 13 || Data-access Object
|-
| vbByte || 17 || Byte
|-
|-
| vbArray || 8192 || Array
| vbArray || 8192 || Array
|}
|}


== Example ==
== Example (Basic) ==


<pre>
<pre>
Line 51: Line 69:
== Related Items ==
== Related Items ==


[[is (operator)|IS]], [[typename|TYPENAME]]
[[is (operator)|Is]], [[typename|TypeName]]


[[Category:Language Reference]]
[[Category:Language Reference]]
[[Category:Variable Handling]]
[[Category:BASIC Functions]]

Latest revision as of 15:39, 25 March 2019

This function is for BASIC compatibility. It is not available in pure JavaScript projects.

VarType(variable)

Description

VarType returns an integer that indicates the type of a variable. The required parameter, variable, is any variable that doesn't contain a user-defined type.

When variable is an array, the value returned is equal to the array constant plus the constant that specifies the element-type.

Table 25: VarType return values

Constant Value Description
vbEmpty 0 Empty
vbNull 1 Null
vbInteger 2 Integer
vbLong 3 Long
vbSingle 4 Single-precision floating-point
vbDouble 5 Double-precision floating-point
vbCurrency 6 Currency
vbDate 7 Date
vbString 8 String
vbObject 9 Object
vbError 10 Error
vbBoolean 11 Boolean
vbVariant 12 Variant
vbDataObject 13 Data-access Object
vbByte 17 Byte
vbArray 8192 Array

Example (Basic)

Rem VarType Example
'VarType returns variable type as an integer
Dim nInteger, nSingle
nInteger = CInt(44)
Print 44 & " is VarType " & VarType(nInteger)
nSingle = CSNG(99.44)
Print 99.44 & "isVarType" & VarType(nSingle)

Output

44 is VarType 2
99.44 is VarType 4

Related Items

Is, TypeName