DIAdem Help

Property: ZEnd for Cascade

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

Property: ZEnd for Cascade

Returns the end of the value range of the track axis of a cascade display in DIAdem VIEW.

Object.ZEnd
ObjectCascade
Object with this property
Object.ZEndDouble with read access

The following example outputs a message with the value ranges of the abscissa, the ordinate, and the track axis of a cascade display. The DisplayObj must be a Cascade type:

VBScriptPython

 

Dim oMyChart
If View.ActiveSheet.ActiveArea.DisplayObjType = "Cascade" Then
  Set oMyChart = View.ActiveSheet.ActiveArea.DisplayObj
  Call LogfileWrite("XBegin: " & Str(oMyChart.XBegin) & vbCrLf & "XEnd: " & Str(oMyChart.XEnd) & vbCrLf &_
                    "YBegin: " & Str(oMyChart.YBegin) & vbCrLf & "YEnd: " & Str(oMyChart.YEnd)) & vbCrLf &_
                    "ZBegin: " & Str(oMyChart.ZBegin) & vbCrLf & "ZEnd: " & Str(oMyChart.ZEnd))
Else
  Call MsgBoxDisp("No Cascade area")
End If