AddReal

This method adds a value of the data type REAL to a property. Usually, a corresponding property was created beforehand with the method AddKey().
Syntax
METHOD AddReal
VAR_INPUT
  value : REAL;
END_VAR
 Inputs
Name  | Type  | 
|---|---|
value  | REAL  | 
Sample call:
fbJson.AddKey('PropertyName');
fbJson.AddReal(42.42);