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


