DIAdem Help

Method: Select for PolarSystem

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

Method: Select for PolarSystem

Selects a polar axis system in DIAdem REPORT.

Object.Select()
ObjectPolarSystem
Object with this method

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

VBScriptPython

 

Dim oMyPolarAxisSystem
Call Report.NewLayout()
Set oMyPolarAxisSystem = Report.ActiveSheet.Objects.Add(eReportObjectPolarAxisSystem,"MyPolarAxisSystem")
Call oMyPolarAxisSystem.Select()
Call MsgBoxDisp(oMyPolarAxisSystem.IsSelected)