DIAdem Help

Property: LabelChannelName for BirdsEyeViewDynamicObject

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

Property: LabelChannelName for BirdsEyeViewDynamicObject

Specifies the name of the channel that contains the labels of a dynamic object in a bird's eye view display in DIAdem VIEW.

Object.LabelChannelName
ObjectBirdsEyeViewDynamicObject
Object with this property
Object.LabelChannelNameString with read and write access

The following example adds dynamic objects to a bird's eye view display and labels the dynamic objects in blue:

VBScriptPython

 

Dim oMySheet, oMyObject, oMyObjects
Set oMySheet = View.Sheets.Add("NewBirdsEyeView")
oMySheet.ActiveArea.DisplayObjType = "BirdsEyeView"
Set oMyObjects = View.ActiveSheet.ActiveArea.DisplayObj.BirdsEyeViewObjects
Set oMyObject = oMyObjects.AddDynamicObject("[1]/[1]","[1]/[2]","[1]/[3]")
oMyObject.LabelChannelName = "[1]/[4]"
oMyObject.LabelColorAuto = FALSE
oMyObject.LabelColor = "blue"

 

Log in to get a better experience