DIAdem Help

Property: Name for ModelReference

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

Property: Name for ModelReference

Specifies in a data store the name of the model reference of an entity.

Object.Name
ObjectModelReference
Object with this property
Object.NameString with read access

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

VBScriptPython

 

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