DataUpdated Property (Read Only)
Syntax
CWBinding.DataUpdated
Data Type
Purpose
Indicates if value or attributes on the CWBinding object have been set since they were last read.
Remarks
This property is automatically set to True when the value or attributes of the CWBinding data have been set and automatically reset to False after this property is queried.
Example
'Create a reference to a CWBinding object
'on CWGraph1
Dim Binding As CWBinding
Set Binding = CWGraph1.CWBindings.Item(1)
Dim bDataUpdated As Boolean
'See if the binding data has been updated
bDataUpdated = Binding.DataUpdated
If bDataUpdated Then
'Do something
End If