ISNULL |
Est-ce nulle ? |
---|---|
LotusScript |
Syntaxe
Function IsNull(expr As Variant) As Integer |
Paramètres
Nom | Description |
---|---|
expr | Ce paramètre permet d'indiquer l'expression de n'importe quel type. |
Description
Cette fonction indique si le résultat est nulle.
Exemple
Voici un exemple d'une utilisation typique de cette fonction :
- Sub Main()
- Dim X
- Dim TableauNombre(1 To 7) As Integer
- TableauNombre(1) = 10
- TableauNombre(2) = 20
- TableauNombre(3) = 10
- TableauNombre(4) = 4
- TableauNombre(5) = 6
- TableauNombre(6) = 1
- TableauNombre(7) = 5
-
- Dim TableauChaine(1 To 4) As String
-
- TableauChaine(1) = "ABC"
- TableauChaine(2) = "DEF"
- TableauChaine(3) = "GHI"
- TableauChaine(4) = "JKL"
-
- Dim TableauMixed(1 To 7) As Variant
-
- TableauMixed(1) = 10
- TableauMixed(2) = "A"
- TableauMixed(3) = "B"
- TableauMixed(4) = 5
- TableauMixed(5) = "C"
- TableauMixed(6) = "D"
- TableauMixed(7) = 7
-
- Chaine = "DEF"
- Nombre = 15
-
- Print "X = " & Isnull(X)
- Print "Date() = " & Isnull(Date())
- Print "TableauNombre = " & Isnull(TableauNombre)
- Print "TableauChaine = " & Isnull(TableauChaine)
- Print "TableauMixed = " & Isnull(TableauMixed)
- Print "Chaine = " & Isnull(Chaine)
- Print "Nombre = " & Isnull(Nombre)
- Print "0 = " & Isnull(0)
- Print "Null = " & Isnull(Null)
- Print "Empty = " & Isnull(Empty)
- Print "2000-01-01 = " & Isnull("2000-01-01")
- Print "08-01-01 = " & Isnull("08-01-01")
- Print "74-01-01 = " & Isnull("74-01-01")
- Print "02-02-2001 = " & Isnull("02-02-2001")
- Print "3/21/11 = " & Isnull("3/21/11")
- End Sub
on obtiendra le résultat suivant :
X = FalseDate() = False
TableauNombre = False
TableauChaine = False
TableauMixed = False
Chaine = False
Nombre = False
0 = False
Null = True
Empty = False
2000-01-01 = False
08-01-01 = False
74-01-01 = False
02-02-2001 = False
3/21/11 = False
Voir également
Langage de programmation - LotusScript - Référence de procédures et fonctions - ISEMPTY
Articles - Les géants de l'informatique - IBM
Dernière mise à jour : Jeudi, le 8 janvier 2015