Object: 2DTableColumnSettings
- Updated2024-09-12
- 1 minute(s) read
(2DTableColumn | 2DTableColumnChannel | 2DTableColumnExpression | 2DTableColumnText | 2DTableColumnVariable) > Object: 2DTableColumnSettings
Object: 2DTableColumnSettings
The 2DTableColumnSettings object provides the properties of a 2D table header in DIAdem REPORT.
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(e2DTableColumnChannel) oMyColumn.Channel.Reference = "[1]/[2]" oMyColumn.Settings.Alignment = eTableAlignmentDecimalPoint oMyColumn.Settings.Format = "d.dddd" Call Report.Refresh()
Properties
Alignment | Angle | BackgroundColor | Font | Footer | Format | Header | OnDrawingCell | RelativeColumnWidth | SortOrder | TargetUnit | UseTextClipping | UseWordWrap
Returned From
2DTableColumn.Settings | 2DTableColumnChannel.Settings | 2DTableColumnExpression.Settings | 2DTableColumnText.Settings | 2DTableColumnVariable.Settings