DIAdem Help

Method: Select for 2DAxisSystem

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

Method: Select for 2DAxisSystem

Selects a 2D axis system in DIAdem REPORT.

Object.Select()
Object2DAxisSystem
Object with this method

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

VBScriptPython

 

Dim oMy2DAxisSystem
Call Report.NewLayout()
Set oMy2DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject2DAxisSystem,"My2DAxisSystem")
Call oMy2DAxisSystem.Select()
Call MsgBoxDisp(oMy2DAxisSystem.IsSelected)