DIAdem Help

Property: ImportMode for ImportParameter <Navigator>

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

Property: ImportMode for ImportParameter <Navigator>

Specifies whether a load command loads, registers, appends or expands the data.

Object.ImportMode
ObjectImportParameter <Navigator>
Object with this property
Object.ImportModeEnumeration with read and write access and the following selection terms:
 24201
eLoad 
Load (default)
 24202
eRegister 
Register
 24203
eAppend 
Append
 24204
eExpand 
Expand

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
oMyImportParameter.PropertyHandling.AutoUpdateChnCharacteristics = True
oMyImportParameter.PropertyHandling.InheritanceMode = ePropInheritanceCopyToChannelLevel
Call DataFileLoad("Example.tdm", "TDM", oMyImportParameter)