DIAdem Help

Property: ChannelRelationMode for ImportParameter <Navigator>

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

Property: ChannelRelationMode for ImportParameter <Navigator>

Specifies whether DIAdem retains the channel reference between the x-channels to the y-channels when importing data.

Object.ChannelRelationMode
ObjectImportParameter <Navigator>
Object with this property
Object.ChannelRelationModeEnumeration with read and write access and the following selection terms:
 1
eChnRelationNone
DIAdem does not retain the xy-reference.
 2
eChnRelationXY
DIAdem retains the xy-channel reference.

The following example adds the external data of the Example.tdm data set with the settings made in the oMyImportParameter object to the data in the Data Portal, without retaining the xy-reference:

VBScriptPython

 

Dim oMyImportParameter
Set oMyImportParameter = Navigator.Settings.CreateImportParameter("Append")
oMyImportParameter.AppendCheckGroupName = eAppendCheckGroupNameAutomatic 
oMyImportParameter.BulkDataLoadingMode = eBulkDataLoadingImmediately
oMyImportParameter.ChannelRelationMode = eChnRelationNone
Call DataFileLoad("Example.tdm", "TDM", oMyImportParameter)