DIAdem Help

Method: Select for 3DTable

  • Updated2024-09-12
  • 1 minute(s) read

Method: Select for 3DTable

Selects a 3D table in DIAdem REPORT.

Object.Select()
Object3DTable
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:

VBScriptPython

 

Dim oMy3DTable
Call Report.NewLayout()
Set oMy3DTable = Report.ActiveSheet.Objects.Add(eReportObject3DTable,"My3DTable")
Call oMy3DTable.Select()
Call MsgBoxDisp(oMy3DTable.IsSelected)