GetAttributeNames Method

From NI DataSocket

GetAttributeNames Method

Syntax

CWData.GetAttributeNames ()

Return Type

Variant

Purpose

Returns the names of the attributes on the CWData object.

Example

'Print the names of the attributes.
v = CWDataSocket1.Data.GetAttributeNames
For i = LBound(v) To UBound(v)
  Text1.Text = Text1.Text + " " + v(i)
Next i

See Also

GetAttribute

HasAttribute

DeleteAttribute

SetAttribute