ActualURL Property (Read Only)

Measurement Studio User Interface

ActualURL Property (Read Only)

Syntax

CWBinding.ActualURL

Data Type

String

Purpose

Identifies the actual URL of the current data source.

Remarks

Once connected to a data source or target, the ActualURL property might be different from the URL property if the original URL pointed to a link that redirected the DataSocket to a new URL. If DataSocket is not connected, the value of ActualURL is an empty string.

Example

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

'Display actual URL in a text box on user interface
Text1.Text = Binding.ActualURL

See Also

URL

Connect

ConnectTo