DIAdem Help

Collection: Elements <DataStore>

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

Collection: Elements <DataStore>

Collection of data elements in a data store.

The following example displays the name of the data element below the first root element:

VBScriptPython

 

Dim oMyDataStore, oMyRootElement, oMyElements, Element, Output
Set oMyDataStore = NAVIGATOR.ConnectDataStore("ASAM Browse Settings Example")
Set oMyRootElement = oMyDataStore.RootElements(1)
Set oMyElements = oMyRootElement.Children
For Each Element in oMyElements
  Output = Output & vbCrLf & Element.Name
Next
Call MsgBoxDisp("Name of children elements: " & Output)

Note  Refer to Working with the Elements Collection and the Element Object for general information on working with the elements.

Properties

Count