DIAdemヘルプ

Method: Select for Circle

  • 更新日2024-09-12
  • 2分で読める

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)