Object: 3DAdditionalIsoline
- Updated2024-09-12
- 2 minute(s) read
(3DCharacteristicDiagramExtensions | Collections) > 3DAdditionalIsolines > Object: 3DAdditionalIsoline
Object: 3DAdditionalIsoline
The 3DAdditionalIsoline object provides the properties of the extended isolines in the Characteristic diagram display mode in a 3D axis system in DIAdem REPORT. DIAdem only displays extended isolines in the xy-plane view.
The following example generates a 3D axis system with a characteristic diagram display and an extended isoline.
| VBScript | Python |
Dim oMy3DAxisSystem, oMy3DCurve, oMyPos, oMyShape, oMyAddIso, oMyAddIsoLine Call Data.Root.Clear() Call DataFileLoad(DataReadPath & "Report_Data.tdm","TDM","") Call Report.NewLayout() Set oMy3DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject3DAxisSystem,"My3DAxisSystem") Set oMyPos = oMy3DAxisSystem.Position.ByCoordinate oMyPos.X1 = 20 oMyPos.X2 = 80 oMyPos.Y1 = 20 oMyPos.Y2 = 80 Set oMy3DCurve = oMy3DAxisSystem.Curves3D.Add(e3DShapeCharacteristicDiagram, "MyNew3DCurve") Set oMyShape = oMy3DCurve.Shape oMyShape.XChannel.Reference = "[2]/[1]" oMyShape.YChannel.Reference = "[2]/[2]" oMyShape.ZChannel.Reference = "[2]/[3]" oMyShape.DataStructure = e3DDataStructureMatrix oMy3DAxisSystem.Settings.RotationAngleXY = 90 oMy3DAxisSystem.Settings.RotationAngleZ = 270 Set oMyAddIso = oMy3DCurve.Shape.Extensions.AdditionalIsolines oMyAddIso.Visible = True oMyAddIso.Count = 1 oMyAddIso.Item(1).Value = 0.6 Set oMyAddIsoLine = oMyAddIso.Item(1).Line Call oMyAddIsoLine.Color.SetPredefinedColor(eColorIndexBlue) oMyAddIsoLine.LineType = eLineTypeDashDot oMyAddIsoLine.Width = eLineWidth0050 Call Report.Refresh()