Method: Select for PolarSystem
- Updated2024-09-12
- 1 minute(s) read
DIAdem REPORT > Methods > Method: Select for PolarSystem
Method: Select for PolarSystem
Selects a polar axis system in DIAdem REPORT.
Object.Select()
| Object | PolarSystem 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:
| VBScript | Python |
Dim oMyPolarAxisSystem Call Report.NewLayout() Set oMyPolarAxisSystem = Report.ActiveSheet.Objects.Add(eReportObjectPolarAxisSystem,"MyPolarAxisSystem") Call oMyPolarAxisSystem.Select() Call MsgBoxDisp(oMyPolarAxisSystem.IsSelected)