Documentation Comments
Use this form to comment on this topic. You can also provide any general observations about the Online Documentation, or request that additional information be added in a future release.
RealityV15.1Online Documentation (MoTW) Revision 7
%Null Special Method (databasic_sp_method_null.htm)
This method is used with a connection object to create a reference to a null object.
%Null()
Cell->setBackgroundColor(%Null())
Call the setBackgroundColor method passing a null object reference.
The above statement is equivalent to the Java syntax:
Cell.setBackgroundColor(null)
An alternative to %Null() is to use the object cast on numeric zero - (object)0.