DataUpdatedEnabled Property

Measurement Studio User Interface

DataUpdatedEnabled Property

Syntax

CWBinding.DataUpdatedEnabled

Data Type

Boolean

Purpose

Indicates if the binding generates the CWBindingDataUpdated event when the bound data changes.

Remarks

Set this property to True to generate the CWBindingDataUpdated event. Use this event to view, manipulate, analyze, and even ignore updated data.

To enable the CWBindingDataUpdated event programmatically, set this property to True before connecting to the data source.

Example

'Create a reference to a CWBinding object
'on CWGraph1
Dim Binding As CWBinding
Set Binding = CWGraph1.CWBindings.Item(1)

'Enable the CWBindingDataUpdated event
Binding.DataUpdatedEnabled = True

See Also

CWBindingDataUpdated