DIAdem Help

Object: 3DIsolineLabel

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

Object: 3DIsolineLabel

The 3DIsolineLabel object provides the properties of the labels for the additional isolines of a 3D axis system in the display modes Surface or Characteristic diagram in DIAdem REPORT.

The following example generates a 3D axis system that displays a characteristic diagram and additional isolines in the xy plane view, and displays the isovalues:

VBScriptPython

 

Dim oMy3DAxisSystem, oMy3DCurve, oMyPos, oMyShape, oMySettings, oMyLabel
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.DataStructure = e3DDataStructureTriplet
oMyShape.XChannel.Reference = "[2]/[1]"
oMyShape.YChannel.Reference = "[2]/[2]"
oMyShape.ZChannel.Reference = "[2]/[3]"
Set oMySettings = oMy3DAxisSystem.Settings
oMySettings.RotationAngleXY = 90
oMySettings.RotationAngleZ = 270
Set oMyLabel = oMyShape.Extensions.Isoline.Label
oMyLabel.Visible = True
oMyLabel.UseCurveColor = False
oMyLabel.RepetitionMode = e3DLabelRepetitionSurfaceLength
oMyLabel.RepetitionPercent = 10
Call oMyLabel.Font.Color.SetPredefinedColor(eColorIndexBlue)
Call Report.Refresh()