DIAdem Help

Method: Select for Arrow

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

Method: Select for Arrow

Selects an arrow in DIAdem REPORT.

Object.Select()
ObjectArrow
Object with this method

The following example generates an arrow in the current worksheet, selects this arrow, and then displays whether the arrow is selected:

VBScriptPython

 

Dim oMyArrow
Call Report.NewLayout()
Set oMyArrow = Report.ActiveSheet.Objects.Add(eReportObjectArrow,"MyArrow")
Call oMyArrow.Select()
Call MsgBoxDisp(oMyArrow.IsSelected)