Method: Item for UpdateData <Navigator>
- Updated2024-09-12
- 1 minute(s) read
DIAdem NAVIGATOR > Methods > Method: Item for UpdateData <Navigator>
Method: Item for UpdateData <Navigator>
Uses the name or the index to access information about a DataPlugin in the update source.
Set oUpdateDataDataPlugin = Object.Item(NameOrIndex)
| Object | UpdateData <Navigator> Object with this method |
| NameOrIndex | Variant Specifies the name or the index of the DataPlugin. |
| oUpdateDataDataPlugin | UpdateDataDataPlugin <Navigator> Returned object |
![]() | Note You can always omit the Item method because it is the standard element of the collection. |
The following example displays the name of the first DataPlugin in the update source:
| VBScript | Python |
Dim oMyDataUpdateSource, oMyUpdateData, i, sDataPluginList Set oMyDataUpdateSource = Navigator.Settings.CreateUpdateSource() Set oMyUpdateData = oMyDataUpdateSource.UpdateData Call MsgBoxDisp(oMyUpdateData.Item(1).Name)
