<< Click to Display Table of Contents >>
CSng(Ausdruck)
Wandelt einen Ausdruck in den Datentyp Single um.
Siehe auch: CDbl, CInt, CLng, CStr
Beispiel:
Sub Main
Dim y As Integer
y = 25
If VarType(y) = 2 Then
Print y
x = CSng(y)
Print x
End If
End Sub