Object: 2DTableColumnVariable
- Updated2024-09-12
- 1 minute(s) read
(2DTable | Collections) > 2DTableColumns > Object: 2DTableColumnVariable
Object: 2DTableColumnVariable
The 2DTableColumnVariable object provides a 2D table column in DIAdem REPORT. The table column takes its contents from a variable.
The following example generates a 2D table with a column and sets the column properties:
| VBScript | Python |
Dim oMy2DTable, oMyPosition, oMyColumn 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(e2DTableColumnVariable) oMyColumn.VariableName = "CurrTime" oMyColumn.Settings.Font.Color.SetPredefinedColor(ePredefinedColorBlue) oMy2DTable.Settings.IndexSettings.IndexMode = e2DTableIndexModeAutomaticMinimum Call Report.Refresh()
Properties
Index | Settings | TagStored | TagTemporary | Type | VariableName
Returned From
2DTableColumns.Add | 2DTableColumns.ChangeType | 2DTableColumns.Copy | 2DTableColumns.Item | Table2DColumnTransformingContext.Column