DIAdem Help

Property: BulkDataLoadingMode for ImportParameter <Navigator>

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

Property: BulkDataLoadingMode for ImportParameter <Navigator>

Specifies the time when DIAdem loads the mass data of the files, whose metadata was previously loaded with a load command, into the Data Portal.

Object.BulkDataLoadingMode
ObjectImportParameter <Navigator>
Object with this property
Object.BulkDataLoadingModeEnumeration with read and write access and the following selection terms:
 24120
eBulkDataLoadingImmediately 
Always load bulk data
 24121
eBulkDataLoadingOnFirstAccess 
Load bulk data on first access
 24122
eBulkDataLoadingOnWriteAccess 
Load bulk data on modification of channel data (Default)

The following example loads the external data of the Example.tdm data set with the settings made in the oMyImportParameter object into the Data Portal:

VBScriptPython

 

Dim oMyImportParameter
Set oMyImportParameter = Navigator.Settings.CreateImportParameter("Load")
oMyImportParameter.AppendCheckGroupName = eAppendCheckGroupNameAutomatic
oMyImportParameter.BulkDataLoadingMode = eBulkDataLoadingOnFirstAccess
Call DataFileLoad("Example.tdm", "TDM", oMyImportParameter)

Log in to get a better experience