DIAdem Help

Method: ShowPropertiesDlg for Bode

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

Method: ShowPropertiesDlg for Bode

Opens the dialog box where you select the channel properties which DIAdem displays in the legend of a Bode axis system in DIAdem VIEW.

Object.ShowPropertiesDlg()
ObjectBode
Object with this method

The following example opens the dialog box containing the channel properties to be displayed in the legend:

VBScriptPython

 

Dim oMyChart: Set oMyChart = View.ActiveSheet.ActiveArea
If oMyChart.DisplayObjType = "Bode" Then
   Call View.ActiveSheet.ActiveArea.DisplayObj.ShowPropertiesDlg
Else
   Call MsgBoxDisp("No Bode Area")
End If