IBM Lotus Symphony
|
Verifica se uma variante variável contém o valor Empty. O valor Empty indica que a variável não está inicializada.
IsEmpty (Var)
Bool
Var: Qualquer variável que pretende testar. Se a variante contiver o valor Empty, a função devolve True, caso contrário a função devolve False.
Sub ExampleIsEmpty
Dim sVar as Variant
sVar = Empty
Print IsEmpty(sVar) REM Returns True
end sub