DIAdemヘルプ

Object: ModelReference

  • 更新日2024-09-12
  • 5分で読める

Object: ModelReference

The ModelReference provides the ModelEntity reference in a data store.

The following example displays the name of the second reference of the fifth entity:

VBScriptPython

 

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