Property: BulkDataLoadingMode for ImportParameter <Navigator>
- Updated2024-09-12
- 1 minute(s) read
DIAdem NAVIGATOR > Properties > Property: BulkDataLoadingMode for ImportParameter <Navigator>
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
| Object | ImportParameter <Navigator> Object with this property | |||||||||
| Object.BulkDataLoadingMode | Enumeration with read and write access and the following selection terms:
|
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:
| VBScript | Python |
Dim oMyImportParameter Set oMyImportParameter = Navigator.Settings.CreateImportParameter("Load") oMyImportParameter.AppendCheckGroupName = eAppendCheckGroupNameAutomatic oMyImportParameter.BulkDataLoadingMode = eBulkDataLoadingOnFirstAccess Call DataFileLoad("Example.tdm", "TDM", oMyImportParameter)