📄 killallxdrc.il
字号:
; Written by: John Horner
; Cadence Design Systems
; horner@cadence.com
;
; Run with Application: Allegro, APD
; Tested against versions 11 through 15
; June 16/2004 - Ron Guthrie
; Remove X-DCR markers even if they are not visible.
;
; July 15/2004 - Ron Guthrie
; Clear selection set to remove temp highlights
;
; This routine will remove all Externally generated DRCs from the design
axlCmdRegister( "rmxdrc" `_jbhrmvallxDRCs)
; ########################################
; Define the routine to remove the markers
; ########################################
;
(defun _jbhrmvallxDRCs ()
axlClearSelSet()
axlDBRefreshId(axlDBGetDesign())
; ###############################
; Remove any existing DRC markers
; ###############################
axlSetFindFilter( ?enabled '(noall drcs invisible) ?onButtons '(drcs))
Markers=axlGetSelSet(axlAddSelectAll())
axlClearSelSet()
(foreach Drc Markers
(if Drc->name == "Externally Determined Violation" then
axlDeleteObject(Drc)
); end if Drc->name == "....
); end foreach Drc Markers
axlFlushDisplay()
); end defun _jbhrmvallxDRCs
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -