DIAdem Help

Method: Select for Circle

  • Mise à jour2024-09-12
  • Temps de lecture : 1 minute(s)

Method: Select for Circle

Selects a circle in DIAdem REPORT.

Object.Select()
ObjectCircle
Object with this method

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

VBScriptPython

 

Dim oMyCircle
Call Report.NewLayout
Set oMyCircle = Report.ActiveSheet.Objects.Add(eReportObjectCircle,"MyCircle")
Call oMyCircle.Select()
Call MsgBoxDisp(oMyCircle.IsSelected)