Description:
The minimum update rate in milliseconds.
Note:
Property access
for read and write.
The default value of this property is defined in the "
Minimum update rate [ms]" configurator of this object.
The
OPC server will not send the data faster than defined during the auto update (if
Update property is
true).
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oOpcGroup = pMe.Pm("/OpcClient/Group1");
var nUpdateRate = oOpcGroup.UpdateRate;
// Reading from the property
oOpcGroup.UpdateRate = 1000;
// Writing into the property
Dim oOpcGroup
Set oOpcGroup = pMe.Pm("/OpcClient/Group1")
Dim nUpdateRate
nUpdateRate = oOpcGroup.UpdateRate
' Reading from the property
oOpcGroup.UpdateRate = 1000
' Writing into the property