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