DIAdem Help

Collection: 2DTableColumnTextList

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

Collection: 2DTableColumnTextList

Collection of all Table2DColumnTextItem objects in DIAdem REPORT. Use the 2DTableColumnTextList collection to access a text from a 2D table column in DIAdem REPORT. This table column takes its contents from a text list.

The following example generates a 2D table with a text list:

VBScriptPython

 

Dim oMy2DTable, oMyColumn, oMyPosition, oMyTextList, I
Call Report.NewLayout()
Set oMy2DTable = Report.ActiveSheet.Objects.Add(eReportObject2DTable,"My2DTable")
Set oMyPosition = oMy2DTable.Position.ByBorder
oMyPosition.Top = 30
oMyPosition.Bottom = 20
oMyPosition.Left = 20
oMyPosition.Right = 30
Set oMyColumn = oMy2DTable.Columns.Add(e2DTableColumnText)
Set oMyTextList = oMyColumn.TextList
oMyTextList.Count = 5
For I = 1 to oMyTextList.Count
  oMyTextList(I).Text = "Row " & I
Next
oMy2DTable.Settings.IndexSettings.IndexMode = e2DTableIndexModeAutomaticMinimum
Call Report.Refresh()

Properties

Count

Methods

Item