IRunnerChangeEvent interface
đ Descriptionâ
Describes the event interface for the onChange event of the runner instance.
đ Type declarationâ
interface IRunnerChangeEvent { runner: Runner;Readonly change: "started" | "render" | "evaluating" | "validated" | "forward" | "backward" | "progress" | "finishing" | "finished" | "stopped" | "paused" | "mode" | "preview";Readonly instance: Instance;Readonly storyline: Storyline;Readonly }
đąī¸ Hover with the mouse over a property name for a tooltip with the description of that property. Click it for more information.
đī¸ Propertiesâ
đˇī¸ changeâ
Specifies what's changed. It can be one of the following values:
started: The form instance is started;render: The form UI should render;evaluating: The form is evaluating;validated: The form is validated;forward: A step forward is made in the form;backward: A step backward is made in the form;progress: The progress of the form is changed;finishing: The form is finishing;finished: The form is completed and finished;stopped: The form is stopped;paused: The form is paused.mode: The mode of the runner is changed;preview: The preview mode of the runner is changed.
Typeâ
"started" | "render" | "evaluating" | "validated" | "forward" | "backward" | "progress" | "finishing" | "finished" | "stopped" | "paused" | "mode" | "preview"
đˇī¸ instanceâ
Reference to the form instance.
Typeâ
đˇī¸ runnerâ
Reference to the runner instance that generated the event.
Typeâ
đˇī¸ storylineâ
Reference to the form storyline.