DIAdem Help

Property: AppendCheckGroupName for ImportParameter <Navigator>

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

Property: AppendCheckGroupName for ImportParameter <Navigator>

Specifies how DIAdem deals with group names when appending external data to the data in the Data Portal.

Object.AppendCheckGroupName
ObjectImportParameter <Navigator>
Object with this property
Object.AppendCheckGroupNameEnumeration with read and write access and the following selection terms:
 24140
eAppendCheckGroupNameEqual 
Default setting. DIAdem checks the name of the channel groups when appending and loading. If the channel groups do not have the same name, DIAdem does not append the data.
 24141
eAppendCheckGroupNameNone 
DIAdem does not check the name of the channel groups when appending and loading. DIAdem appends the external data to the internal data based on the index.
 24142
eAppendCheckGroupNameAutomatic 
If the external and internal data only contain one channel group each, DIAdem appends the external data to the internal data ignoring the name of the channel groups. If the external and the internal data contains more than one channel group, DIAdem checks the names of the channel groups when appending and loading and only appends the data if the names of the channel groups are identical. DIAdem does not append the external data to the internal data.

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:

VBScriptPython

 

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