OPC Studio User's Guide and Reference
Item Property (_UABrowsePathElementCollection)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.Navigation.ComTypes Namespace > _UABrowsePathElementCollection Interface : Item Property
Syntax
'Declaration
 
<NotNullAttribute()>
Default Property Item( _
   ByVal index As Integer _
) As UABrowsePathElement
'Usage
 
Dim instance As _UABrowsePathElementCollection
Dim index As Integer
Dim value As UABrowsePathElement
 
instance.Item(index) = value
 
value = instance.Item(index)
[NotNull()]
UABrowsePathElement this[ 
   int index
]; {get; set;}
[NotNull()]
property UABrowsePathElement^ default [int] {
   UABrowsePathElement^ get(int index);
   void set (int index, UABrowsePathElement^ value);
}

Parameters

index

Property Value

The value of this property cannot be null (Nothing in Visual Basic).

Remarks

Because the OpcLabs.EasyOpc.UA.Navigation.UABrowsePathElement has an implicit conversion from OpcLabs.EasyOpc.UA.AddressSpace.UAQualifiedName, in languages that support implicit conversion operators (such as C# or VB.NET), you can simply use a OpcLabs.EasyOpc.UA.AddressSpace.UAQualifiedName (containing a target qualified name, which becomes the "any hierarchical" forward reference) in place of OpcLabs.EasyOpc.UA.Navigation.UABrowsePathElement value when setting this property, and the corresponding OPC UA browse path element will be constructed automatically. When the implicit conversion operators are not supported (such as with Python.NET), you can use the FromUAQualifiedName static method instead.

This member or type is for use from COM. It is not meant to be used from .NET or Python. Refer to the corresponding .NET member or type instead, if you are developing in .NET or Python.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also