DIAdem Help

Method: Select for Image

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

Method: Select for Image

Selects a graphic in DIAdem REPORT.

Object.Select()
ObjectImage
Object with this method

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

VBScriptPython

 

Dim oMyImage
Call Report.NewLayout()
Set oMyImage = Report.ActiveSheet.Objects.Add(eReportObjectImage,"MyImage")
Call oMyImage.Select()
Call MsgBoxDisp(oMyImage.IsSelected)