DIAdem Help

Method: Item for UpdateData <Navigator>

  • Updated2024-09-12
  • 1 minute(s) read

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)
ObjectUpdateData <Navigator>
Object with this method
NameOrIndexVariant
Specifies the name or the index of the DataPlugin.
oUpdateDataDataPluginUpdateDataDataPlugin <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:

VBScriptPython

 

Dim oMyDataUpdateSource, oMyUpdateData, i, sDataPluginList
Set oMyDataUpdateSource = Navigator.Settings.CreateUpdateSource()
Set oMyUpdateData = oMyDataUpdateSource.UpdateData
Call MsgBoxDisp(oMyUpdateData.Item(1).Name)