DIAdem Help

Property: Properties for Element <Data>

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

Property: Properties for Element <Data>

Contains the Properties collection that is associated with a ChannelGroup object in the script interface for internal data.

Set oProperties = Object.Properties
ObjectElement <Data>
Object with this property
oPropertiesProperties <Data>
Returned object

The following example displays the name and the value of the fifth property of the first channel of the active channel group:

VBScriptPython

 

Dim 
oMyElement
Set oMyElement = Data.Root.ActiveChannelGroup.Channels(1)
Call MsgBoxDisp (oMyElement.Properties(5).Name & " " & 
oMyElement.Properties(5).Value)

Log in to get a better experience