DIAdem Help

Method: Select for Image

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

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)