geMakeProbeWithOnColor
geMakeProbeWithOnColor( [ ?windoww_windowId] [ ?namet_name] [ ?objectg_object] [ ?otherObjectg_otherObject] [ ?onColorg_onColor] [ ?probeTypet_probeType] [ ?displayStylet_displayStyle] [ ?viewTypeListg_viewTypesToCrossProbe] [ ?messaget_messageString] ) => o_probeObjectId
Description
Creates an instance probe and gives it the specified color.
The object is highlighted when found using the display attributes of layer g_onColor. This function only works with instance probes. You can specify other types of probes, but they will not display. t_probeType can be net, path, terminal, or instance. The probe type can be inferred from g_object if it is an object ID and is not a terminal.
A terminal can be part of either a terminal probe or a net probe, so the probe type can’t be derived in that case. If g_object is a path list, t_probeType must be specified because the type cannot be derived from the name. For net probes, t_displayStyle is used to determine whether to display the probe using flight lines or objects. Display style object highlights the physical objects associated with the probe. Display style flight highlights the terminals and draws straight flight lines between the terminals of the net. The default display style is object.
g_viewTypesToCrossProbe is a list of strings that indicates the view types that should be cross probed. t_messageString is an optional string to be passed to C-level probe functions.
A single probe can have only one of the three display arguments: color, label, or onColor, and this function sets the onColor attribute. A multiple probe (same object and different display argument) can specify multiple display arguments. If g_object has already been probed, the probe becomes a multiple probe.
Arguments
Value Returned
Examples
Probes instance I2 contained within instance I1 within the top level of the current window. The probe is drawn on layer y0 drawing.
probe = geMakeProbeWithOnColor(?name "myProbe"
?onColor list( "y0" "drawing")
?object list( "I1" "I2")
?probeType "instance")
Related Topics
Return to top