DIAdem Help

Object: UpdateDataDataPlugin <Navigator>

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

Object: UpdateDataDataPlugin <Navigator>

You can use the UpdateDataDataPlugin object to access information about a DataPlugin in the update source.

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)