DIAdem Help

Property: FileExtensionList for UpdateDataDataPlugin <Navigator>

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

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
ObjectUpdateDataDataPlugin <Navigator>
Object with this property
Object.FileExtensionListString 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.

VBScriptPython

 

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)