Property: FileExtensionList for UpdateDataDataPlugin <Navigator>
- Updated2024-09-12
- 1 minute(s) read
DIAdem NAVIGATOR > Properties > Property: FileExtensionList for UpdateDataDataPlugin <Navigator>
Property: FileExtensionList for UpdateDataDataPlugin <Navigator>
Specifies the list with filename extensions of DataPlugins available in the update source. DIAdem loads files with these filename extensions with the respective DataPlugin.
Object.FileExtensionList
| Object | UpdateDataDataPlugin <Navigator> Object with this property |
| Object.FileExtensionList | String with read access |
The following example displays the list of filename extensions which you can load with the respective DataPlugin for all registered file-based DataPlugins.
| VBScript | Python |
Dim oMyRegisteredDataPlugins, DataPlugin, n, sOutput Set oMyRegisteredDataPlugins = Navigator.Settings.RegisteredDataPlugins For n = 1 to oMyRegisteredDataPlugins.Count If oMyRegisteredDataPlugins(n).IsFileBased = TRUE Then sOutput = sOutput & oMyRegisteredDataPlugins(n).Name & ": " & oMyRegisteredDataPlugins(n).FileExtensionList & vbCrLf End If Next Call MsgBoxDisp(sOutput)