IsNull

Returns True or False to indicate if a value is null.

Syntax

IsNull("Value")

Arguments

Argument Description
Value Value to evaluate.

Return value

Value Description
True Value is null.
False Value is not null.

Example

x = Window("WysiCorp CRM").Grid("accountsDataGridView").GetDotNETProperty("Selection")

If IsNull(x) Then

PrintLn("No selection")

Else

x.SetDotNETProperty("Value", 10)

End If