Property: InheritanceMode for PropertyHandling <Navigator>
- Updated2024-09-12
- 1 minute(s) read
DIAdem NAVIGATOR > Properties > Property: InheritanceMode for PropertyHandling <Navigator>
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
| Object | PropertyHandling <Navigator> Object with this property | |||||||||
| Object.InheritanceMode | Enumeration with read and write access and the following selection terms:
|
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:
| VBScript | Python |
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)