geDeleteAllMarker
geDeleteAllMarker(d_cellview[l_owner] [l_severity] [g_traverse] ) => t / nil
Description
Deletes all markers in d_cellview that have owner l_owner and severity l_severity. If l_owner is specified, l_severity must be specified. All markers in the specified traversal hierarchy are deleted, unless g_traverse argument is specified as nil.
Arguments
|
Specifies the traversal hierarchy, starting from the cellview. Specify this value as |
Value Returned
Examples
In the following example, the function deletes all markers in cell3 that are of severity error and owned by DLE or PDV but does not traverse the hierarchy because the last argument is nil.
geDeleteAllMarker( cell3 list("DLE" "PDV") "error" nil )
In the following example, the function deletes the markers only in the specified cellview, cvId.
geDeleteAllMarker( cvId nil nil nil)
Related Topics
Return to top