Collection: UpdateData <Navigator>
- Updated2024-09-12
- 1 minute(s) read
Objects > Navigator > Settings
Collection: UpdateData <Navigator>
List of the DataPlugins available in the update source.
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)