Item Method (HistorianTagStatusList)
- Last UpdatedAug 21, 2026
- 1 minute read
Retrieve an instance of the Archestra.HistorianTagStatus class that has been added to the list earlier. This method does not remove the instance from the list. To do that use the RemoveAt(int index) method.
'Declaration
Public Function Item( _
ByVal index As UInteger _
) As HistorianTagStatus
'Usage
Dim instance As HistorianTagStatusList
Dim index As UInteger
Dim value As HistorianTagStatus
value = instance.Item(index)
public HistorianTagStatus this[
uint index
];
public:
HistorianTagStatus^ Item(
uint index
)
Parameters
- index
- The list index of the instance of the Archestra.HistorianTagStatus class you want to retrieve.
Return Value
Archestra.HistorianTagStatus if successful. Otherwise null.