DIAdem Help

Method: ExportEncrypted for RegisteredDataPlugin <Navigator>

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

Method: ExportEncrypted for RegisteredDataPlugin <Navigator>

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

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

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

VBScriptPython

 

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