Object: 3DTableGridLine
- Updated2024-09-12
- 1 minute(s) read
(ReportObjects | SelectedObjects) > 3DTable > 3DTableSettings > Object: 3DTableGridLine
Object: 3DTableGridLine
The 3DTableGridLine object provides the grid line properties of a 3D table in DIAdem REPORT.
The following example generates a 3D table without grid lines:
| VBScript | Python |
Dim oMy3DTable, oMyPosition, oMyX, oMyY, oMyZ, oMySettings Call Data.Root.Clear() Call DataFileLoad(DataReadPath & "Report_Data.tdm","TDM","") Call Report.NewLayout() Set oMy3DTable = Report.ActiveSheet.Objects.Add(eReportObject3DTable,"My2DTable") Set oMyPosition = oMy3DTable.Position.ByBorder oMyPosition.Top = 20 oMyPosition.Bottom = 20 oMyPosition.Left = 20 oMyPosition.Right = 20 Set oMyX = oMy3DTable.X Set oMyY = oMy3DTable.Y Set oMyZ = oMy3DTable.Z Set oMySettings = oMy3DTable.Settings oMySettings.UseAutoFontSize = False oMySettings.GridHorizontal.Visible = False oMySettings.GridVertical.Visible = False oMyX.Channel.Reference = "[2]/[1]" oMyX.Font.Size = 2 oMyX.Format = "d.dd" oMyY.Channel.Reference = "[2]/[2]" oMyY.Font.Size = 2 oMyY.Format = "d.dd" oMyZ.Channel.Reference = "[2]/[3]" oMyZ.Font.Size = 2 oMyZ.Format = "d.dd" Call Report.Refresh()
Returned From
3DTableSettings.GridHorizontal | 3DTableSettings.GridVertical