DIAdem Help

Property: InheritanceMode for PropertyHandling <Navigator>

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

Property: InheritanceMode for PropertyHandling <Navigator>

Specifies whether DIAdem also transfers the properties of elements from superordinate levels to the element in the Data Portal when loading data from a DataFinder or an ASAM data store.

Object.InheritanceMode
ObjectPropertyHandling <Navigator>
Object with this property
Object.InheritanceModeEnumeration with read and write access and the following selection terms:
 24010
ePropInheritanceNone 
No inheritance (Default)
 24011
ePropInheritanceMoveToLoadedLevel 
Move to loaded level
 24012
ePropInheritanceCopyToChannelLevel 
Copy to channel level

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)

Log in to get a better experience