DIAdem Help

Method: Select for 2DTable

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

Method: Select for 2DTable

Selects a 2D table in DIAdem REPORT.

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

VBScriptPython

 

Dim oMy2DTable
Call Report.NewLayout()
Set oMy2DTable = Report.ActiveSheet.Objects.Add(eReportObject2DTable,"My2DTable")
Call oMy2DTable.Select()
Call MsgBoxDisp(oMy2DTable.IsSelected)