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