DIAdem Help

Property: Inverse for ModelReference

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

Property: Inverse for ModelReference

Specifies in a data store the inverse reference of a model reference.

Set oModelReference = Object.Inverse
ObjectModelReference
Object with this property
oModelReferenceModelReference
Returned object

The following example displays the name of the inverse reference of the first model reference:

VBScriptPython

 

Dim oMyDataStore, oMyDataStoreModel, oMyModelReference
Set oMyDataStore = NAVIGATOR.ConnectDataStore("ASAM Browse Settings Example")
Set oMyDataStoreModel = oMyDataStore.Model
Set oMyModelReference = oMyDataStoreModel.Entities(1).ModelReferences(1)
Call MsgBoxDisp(oMyModelReference.Inverse.Name)