geLoadProbe
geLoadProbe( [w_windowId] [p_port] [s_prop] [s_cond] [g_value] ) => t / nil
Description
The probes are recreated by reading the necessary information in the property list saved from a geSaveProbe call. This property list also allows the restoring of any user-defined or application-specific properties that might have been put on the probes.
The optional parameters s_prop, s_cond, and g_value conditionally load probes. s_prop is a symbol representing a property name. s_cond is a SKILL symbol representing the condition. g_value is the reference value. The probe is loaded only if s_prop is related to g_value by s_cond.
Arguments
Value Returned
Examples
Loads all probes in file /tmp/myProbes.out that have the user-defined property myProperty equal to the string critical.
m = infile( "/tmp/myProbes.out" )
geLoadProbe( window(3) m ’myProperty ’equal "critical")
Related Topics
Return to top