DIAdem Help

Property: InheritanceSeparator for PropertyHandling <Navigator>

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

Property: InheritanceSeparator for PropertyHandling <Navigator>

Specifies whether DIAdem uses the underscore or the tilde as the separator for the inheritance of properties.

Object.InheritanceSeparator
ObjectPropertyHandling <Navigator>
Object with this property
Object.InheritanceSeparatorEnumeration with read and write access and the following selection terms:
 24151
ePropInheritanceSeparatorUnderscore 
Underscore as separator
 24152
ePropInheritanceSeparatorTilde 
Tilde as separator (Default)

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