Object: 2DDifferential
- Updated2024-09-12
- 1 minute(s) read
(2DAxisSystem | Collections) > 2DCurves > 2DCurve > Object: 2DDifferential
Object: 2DDifferential
The 2DDifferential object provides the curve properties of a 2D axis system in the Differential display mode in DIAdem REPORT.
The following example generates an axis system with a curve and specifies the curve parameters:
| VBScript | Python |
Dim oMy2DAxisSystem, oMyCurve, oMyPos, oMyShape, oMySettings Call Report.NewLayout() Call Data.Root.Clear() Call DataFileLoad(DataReadPath & "Report_Data.tdm","TDM","") Set oMy2DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject2DAxisSystem, "My2DAxisSystem") Set oMyPos = oMy2DAxisSystem.Position.ByCoordinate oMyPos.X1 = 20 oMyPos.X2 = 80 oMyPos.Y1 = 20 oMyPos.Y2 = 80 Set oMyCurve = oMy2DAxisSystem.Curves2D.Add(e2DShapeDifferential, "MyCurve") Set oMyShape = oMyCurve.Shape oMyShape.XChannel.Reference = "[2]/[1]" oMyShape.YChannel.Reference = "[2]/[2]" oMyShape.YChannelDifferential.Reference = "[2]/[3]" Set oMySettings = oMyShape.Settings oMySettings.Type = e2DDifferentialRange Call oMySettings.BorderLine.Color.SetPredefinedColor(eColorIndexBlue) oMySettings.BorderLine.Width = eLineWidth0100 Call Report.Refresh()