DIAdemヘルプ

Object: UpdateDataDataPlugin <Navigator>

  • 更新日2024-09-12
  • 2分で読める

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)