IsEmpty Function [Runtime]/text/sbasic/shared/03102400.xhpSun Microsystems, Inc.converted from old format - fpeIsEmpty functionIsEmpty Function [Runtime]Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialized.Syntax:IsEmpty (Var)Return value:BoolParameters:Var: Any variable that you want to test. If the Variant contains the Empty value, the function returns True, otherwise the function returns False.Example:Sub ExampleIsEmptyDim sVar as VariantsVar = EmptyPrint IsEmpty(sVar) REM Returns Trueend sub