This is the legacy 4D documentation web site. Documentations are progressively being moved to developer.4d.com

Home

 
4D v20 R7
OB SET NULL

OB SET NULL 


 

OB SET NULL ( object ; property ) 
Parameter Type   Description
object  Object, Object Field in Structured object
property  Text in Name of property where null value is to be applied

The OB SET NULL command stores the null value in the language object designated by the object parameter.

object must have been defined using the  _O_C_OBJECT command or designate a 4D object field.

In the property parameter, pass the label of the property where you want to store the null value. If the property already exists in object, its value is updated. If it does not exist, it is created.
Note that the property parameter is case sensitive.

Example  

We want to put the null value in the "age" property for Lea:

 C_OBJECT($ref)
 OB SET($ref;"name";"Lea";"age";4)
  // $ref = {"name":"Lea","age":4}
 ...
 OB SET NULL($ref ;"age")
  // $ref = {"name":"Lea","age":null}



See also 

Null
OB GET PROPERTY NAMES
OB SET

 
PROPERTIES 

Product: 4D
Theme: Objects (Language)
Number: 1233

This command can be run in preemptive processes

 
PAGE CONTENTS 
 
HISTORY 

Created: 4D v14
Modified: 4D v15

 
ARTICLE USAGE

4D Language Reference ( 4D v20 R7)