Object: 2DTableGridLine
- Updated2024-09-12
- 1 minute(s) read
(ReportObjects | SelectedObjects) > 2DTable > 2DTableSettings > Object: 2DTableGridLine
Object: 2DTableGridLine
The 2DTableGridLine object provides the grid line properties of a 2D table in DIAdem REPORT.
The following example generates a table with two columns without frames and grid lines:
| VBScript | Python |
Dim oMy2DTable, oMyPosition, oMySettings, oMyGridHorSettings, oMyGridVerSettings, oMyColumn1, oMyColumn2 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 oMySettings = oMy2DTable.Settings oMySettings.UseXDoubleLine = False oMySettings.UseYDoubleLine = False Call oMySettings.BorderLineColor.SetPredefinedColor(eColorIndexNone) Set oMyGridHorSettings = oMy2DTable.Settings.GridHorizontal oMyGridHorSettings.Visible = False Set oMyGridVerSettings = oMy2DTable.Settings.GridVertical oMyGridVerSettings.Visible = False Set oMyColumn1 = oMy2DTable.Columns.Add(e2DTableColumnChannel) oMyColumn1.Channel.Reference = "[1]/[1]" Set oMyColumn2 = oMy2DTable.Columns.Add(e2DTableColumnChannel) oMyColumn2.Channel.Reference = "[1]/[2]" Call Report.Refresh()
Returned From
2DTableSettings.GridHorizontal | 2DTableSettings.GridVertical