DIAdemヘルプ

Method: RunInitialize for Slider

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

Method: RunInitialize for Slider

Triggers the EventInitialize event for a control in user dialog boxes.

Object.RunInitialize
ObjectSlider
Object with this method

The following example triggers the EventInitialize event for the Slider1 control when the ComboBox1 changes:

Sub Slider1_EventInitialize(ByRef This)
  'Do something
End Sub
Sub ComboBox1_EventChange(ByRef This)
  Call Slider1.RunInitialize
End Sub