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