add_object_to_set
add_object_to_set -objectd_ctuObj-setd_setObj
Description
Arguments
Examples
The following example adds routes in the selected set to the HL1 highlight set.
foreach item [ml [get_selection_set]] {
if {[string compare [ip type $item] "ctuRoute"] == 0} {
add_object_to_set -object $item -set [get_highlight -name HL1]
}
}
Related Topics
Return to top