Sets the callback on change of the experiment type in the Settings dialog.

Namespace: ExpSuite
Assembly: FrameWork (in FrameWork.exe) Version: 1.0.0.0

Syntax

Visual Basic
Public Sub SetOnExpTypeCallback ( _
	lAddr As OnExpTypeChangeDelegate _
)

Parameters

lAddr
Type: OnExpTypeChangeDelegate
Address of the callback function

Remarks

OnExpType callback will be executed on a change of experiment type. The delegate is OnExpTypeChangeDelegate(ByVal lOld As Integer, ByVal lNew As Integer) where:
  • lOld: old experiment type
  • lNew: new experiment type

  • The experiment type changes on:
  • loading setting from file, old exp. type is set to -1 in this case
  • changing the experiment type in the Settings dialog
  • clearing the settings, old exp. type is set to -1 in this case

  • See Also