DIAdem Help

Method: Activate for Sheet

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

Method: Activate for Sheet

Enables the specified worksheet in DIAdem VIEW.

Object.Activate()
ObjectSheet
Object with this method

The following example enables all worksheets consecutively for two seconds:

VBScriptPython

 

Call WndOpen("VIEW")
Dim oMySheet
For Each oMySheet in View.Sheets
  Call oMySheet.Activate
  Pause(2)
Next