Empty Function (Object) | |
Determine if the result of an expression is empty.
Namespace:
XSharp.RT
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax FUNCTION Empty(
oObject AS Object
) AS LOGIC
public static bool Empty(
Object oObject
)
Request Example
View SourceParameters
- oObject
- Type: Object
The value to check for 'emptyness'
Return Value
Type:
Logic
TRUE if the expression results in an empty value; otherwise, FALSE.
Remarks For Object values the 'emptyness' is determined by Comparing to NULL_OBJECT and comparign to DBNull.Value
See Also