עזרה עבור LibreOfficeDev 7.4
Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialized.
IsEmpty (Var)
Boolean
\
Sub ExampleIsEmpty
Dim sVar As Variant
sVar = Empty
Print IsEmpty(sVar) ' True
End Sub