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