<< Click to Display Table of Contents >> IsEmpty (Funktion) |
IsEmpty(Variant)
Prüft, ob die übergebene Variant-Variable initialisiert wurde.
Siehe auch: IsDate, IsNull, IsNumeric, VarType, Abschnitt Besonderheiten beim Variant-Datentyp
Beispiel:
Sub Main
Dim x ' Empty, da noch kein Wert zugewiesen
MsgBox "IsEmpty(x): " & IsEmpty(x)
x = 5 ' Nicht mehr Empty
MsgBox "IsEmpty(x): " & IsEmpty(x)
x = Empty ' Wieder Empty
MsgBox "IsEmpty(x): " & IsEmpty(x)
End Sub