A helper class to manage arguments of a method node. More...
Inherits object.
Public Member Functions | |
| Union[str, float, int] | read (self) |
| Returns the value of the argument. More... | |
| None | write (self, Union[str, float, int] value) |
| Sets the value of the argument. More... | |
Properties | |
| data_type = property | |
| int: Gets the data type of the argument (see cvb.opcua.DataType). | |
A helper class to manage arguments of a method node.
| Union[str, float, int] read | ( | self | ) |
Returns the value of the argument.
Union[str, float, int] Value of the argument.
| None write | ( | self, | |
| Union[str, float, int] | value | ||
| ) |
Sets the value of the argument.
value : Union[str, float, int] New value for the argument.