DIAdem Help

Property: Area for BirdsEyeView

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

Property: Area for BirdsEyeView

Returns the area in DIAdem VIEW that contains a bird's eye view display.

Set oArea = Object.Area
ObjectBirdsEyeView
Object with this property
oAreaArea
Returned object

The following example creates a bird's eye view display in the first area and then outputs the name of the first area:

VBScriptPython

 

Dim oMyDisplayObj
View.Sheets(1).Areas(1).DisplayObjType = "BirdsEyeView"
Set oMyDisplayObj = View.Sheets(1).Areas(1).DisplayObj
Call MsgBoxDisp("Name: " & oMyDisplayObj.Area.Name)

Log in to get a better experience