|
| Syntax
result = IsEmpty (String) |
|
| Description:
Tests a String for the empty condition.
|
|
| Return
value:
True
if the String has 0 length; otherwise False.
|
|
| Example:
String = ""
If IsEmpty(String)
MsgBox "String is empty."
Else
MsgBox "String contain a text."
EndIf
|
|
| IsEmpty function is included
in the lcbase.dll |