UpdateEnabled - property of the PmaCommGroup object
Description:
Enable/disable the automatic data update.
Syntax:
Boolean UpdateEnabled
Note:
Property access
for read and write.
The default value of this property is defined in the "
Data refresh enabled" configurator of this object.
The
PmaCommGroup object that has this property set to
true, requires the ongoing update of all its data from the communication driver.
Communication driver will update this data (will communicate regulary) with the period defined in the
UpdateRate property.
This property can be changed in the INFO system by clicking the "
Actions" button. See "
PmaRoot > Permissions > InfoEdit" permission.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oCommGroup = pMe.Pm("/Comm/Group1");
oCommGroup.UpdateEnabled = true;
Dim oCommGroup
Set oCommGroup = pMe.Pm("/Comm/Group1")
oCommGroup.UpdateEnabled = true