deRegProbeTrigger
deRegProbeTrigger(
s_probeTrigger
)
=> t / nil
Description
Registers a probe trigger, s_probeTrigger, to be called after creating a new window or installing a new design in an existing window.
The probe trigger is responsible for maintaining the probe context, which is kept for each window. The probe trigger is also called when the window is closed to delete the probe context. Only one probe trigger can be registered. If one has already been registered, an error is generated. The probe trigger is discussed in the next section.
Arguments
|
SKILL function to be called when a window probe context needs to be updated because of a change in the window contents. |
Value Returned
Examples
Installs ’myProbeTrigger as the current global probing trigger and returns t.
deRegProbeTrigger( 'myProbeTrigger )
Return to top