DIAdem Help

Method: Export for RegisteredDataPlugin <Navigator>

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

Method: Export for RegisteredDataPlugin <Navigator>

Exports a DataPlugin registered on your computer into a URI file.

bExport = Object.Export(Name)
ObjectRegisteredDataPlugin <Navigator>
Object with this method
NameString
Specifies the path and the name of the URI file into which you export the DataPlugin.
bExportBoolean
Specifies whether DIAdem exported the DataPlugin successfully (TRUE) or not (FALSE).

The following example exports the LGR DataPlugin into the URI file LGR_New.uri:

VBScriptPython

 

Dim oMyDataPlugin, oMyDataPlugins, bExport
Set oMyDataPlugins = Navigator.Settings.RegisteredDataPlugins
Set oMyDataPlugin = oMyDataPlugins("LGR")
bExport = oMyDataPlugin.Export("D:\LGR_New.uri")