VoidP
From Director Online Wiki
One of Lingo's predicate functions. Tests to see whether a variable contains the value VOID.
Example:
isVoid = voidP( someVariable )
if (isVoid) then
put "The value is VOID"
else
put "The value is not VOID"
end if