Collabora Office 24.04 Help
Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialized.
IsEmpty (Var)
Boolean
Var: AkákoÄľvek premenná, ktorĂş chcete testovaĹĄ. Ak premenná obsahuje prázdnu hodnotu, potom funkcia vráti True, v ostatnĂ˝ch prĂpadoch vráti False.
Sub ExampleIsEmpty
Dim sVar As Variant
sVar = Empty
Print IsEmpty(sVar) ' True
End Sub