DIAdem Help

Object: SheetEvents

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

Object: SheetEvents

The SheetEvents object provides the events of a worksheet in DIAdem REPORT.

Note  Refer to Working with Events in DIAdem for further information.

Note  To test the example script, you must first save the script and register it as a user command in the dialog box that opens when you select Settings»Extensions»User Commands.
The following example displays a message after replotting the current worksheet:

Call AddUserCommandToEvent("Report.Events.OnFinalizeSheetRefresh","MyFinalizeRefresh")

Sub MyFinalizeRefresh()
  Call MsgBoxDisp("Refresh of sheet completed: " & Report.ActiveSheet.Name)
End Sub

Returned From

Sheet.Events