DIAdem Help

Method: Select for 3DAxisSystem

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

Method: Select for 3DAxisSystem

Selects a 3D axis system in DIAdem REPORT.

Object.Select()
Object3DAxisSystem
Object with this method

The following example generates a 3D axis system in the current worksheet, selects this 3D axis system, and then displays whether the 3D axis system is selected:

VBScriptPython

 

Dim oMy3DAxisSystem
Call Report.NewLayout()
Set oMy3DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject3DAxisSystem,"My3DAxisSystem")
Call oMy3DAxisSystem.Select()
Call MsgBoxDisp(oMy3DAxisSystem.IsSelected)