Object: 2DTableItemBackgroundColor
- Updated2024-09-12
- 1 minute(s) read
(ReportObjects | SelectedObjects) > 2DTable > 2DTableSettings > Object: 2DTableItemBackgroundColor
Object: 2DTableItemBackgroundColor
The 2DTableItemBackgroundColor object provides properties for the display of a 2D table.
The following example generates a 2D table with a colored background:
| VBScript | Python |
Dim oMy2DTable, oMyPosition, oMyRow, 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" Set oMyRow = oMy2DTable.Settings.RowBackground oMyRow.BackgroundColor.ColorIndex = eColorIndexGrey oMyRow.AlternatingBackgroundColor.ColorIndex = eColorIndexYellow Call Report.Refresh()
Properties
Returned From
2DTableSettings.ColumnBackground | 2DTableSettings.RowBackground