Method: Select for 3DTable
- Updated2024-09-12
- 1 minute(s) read
DIAdem REPORT > Methods > Method: Select for 3DTable
Method: Select for 3DTable
Selects a 3D table in DIAdem REPORT.
Object.Select()
| Object | 3DTable Object with this method |
The following example generates a 3D table in the current worksheet, selects this 3D table, and then displays whether the 3D table is selected:
| VBScript | Python |
Dim oMy3DTable Call Report.NewLayout() Set oMy3DTable = Report.ActiveSheet.Objects.Add(eReportObject3DTable,"My3DTable") Call oMy3DTable.Select() Call MsgBoxDisp(oMy3DTable.IsSelected)