DIAdem Help

Object: 3DIsolinesSettings

  • Updated2024-09-12
  • 1 minute(s) read

Object: 3DIsolinesSettings

The 3DIsolinesSettings object provides the properties of the curve parameters of a 3D axis system in the Isolines display mode in DIAdem REPORT.

The following example generates a 3D axis system with an isoline display:

VBScriptPython

 

Dim oMy3DAxisSystem, oMy3DCurve, oMyPos, oMyShape, oMySettings
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(e3DShapeIsolines, "MyNew3DCurve")
Set oMyShape = oMy3DCurve.Shape
oMyShape.XChannel.Reference = "[4]/[1]"
oMyShape.YChannel.Reference = "[4]/[2]"
oMyShape.NumberOfIsoChannels.Count = 3
Set oMySettings = oMyShape.Settings
oMySettings.DisplayType = e3DIsolineCorrespondingToIsoValueAndProjected
Call oMySettings.Line.Color.SetPredefinedColor(eColorIndexBlue)
oMySettings.Line.Width = eLineWidth0100
Call Report.Refresh()

Properties

DisplayType | Line | Palette

Returned From

3DIsolines.Settings