real class : Value(real) setter
Description
This setter will change only the value without changing the reference value.
Syntax
realInstance.Value = newValue
Arguments
Class | Name | Description |
real | newValue | The new value. |
Return value
None
Sample code
//anyReal is a instance of real type.
anyReal.Value = 100.5;
Notes
None
Links for reference
None